mirror of
https://github.com/zhigang1992/react-native.git
synced 2026-04-09 22:43:10 +08:00
Summary: public Rename the `BridgeProfiling` JS module to `Systrace`, since it's actually just an API to Systrace markers. This should make it clearer as we add more perf tooling. Reviewed By: jspahrsummers Differential Revision: D2734001 fb-gh-sync-id: 642848fa7340c545067f2a7cf5cef8af1c8a69a2
15 lines
319 B
Java
15 lines
319 B
Java
// Copyright 2004-present Facebook. All Rights Reserved.
|
|
|
|
package com.facebook.react.bridge;
|
|
|
|
import com.facebook.proguard.annotations.DoNotStrip;
|
|
|
|
/**
|
|
* Interface to the JavaScript Systrace Module
|
|
*/
|
|
@DoNotStrip
|
|
public interface Systrace extends JavaScriptModule{
|
|
@DoNotStrip
|
|
void setEnabled(boolean enabled);
|
|
}
|