Files
react-native/ReactAndroid/src/main/java/com/facebook/react/bridge/Systrace.java
Tadeu Zagallo 3549ff049c Rename BridgeProfiling to Systrace for consistency
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
2015-12-11 03:53:19 -08:00

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);
}