mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
Kotlinify Systrace (#43917)
Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/43917 Changelog: [Internal] As part of the Sustainability Week (see [post](https://fb.workplace.com/groups/251759413609061/permalink/742797531171911/)). Reviewed By: cortinico Differential Revision: D55796784 fbshipit-source-id: f793e94cee18af717b9de7a09ae8c478f2a3d5fe
This commit is contained in:
committed by
Facebook GitHub Bot
parent
0ee40aac39
commit
93a2dd9545
+4
-5
@@ -5,13 +5,12 @@
|
||||
* LICENSE file in the root directory of this source tree.
|
||||
*/
|
||||
|
||||
package com.facebook.react.bridge;
|
||||
package com.facebook.react.bridge
|
||||
|
||||
import com.facebook.proguard.annotations.DoNotStrip;
|
||||
import com.facebook.proguard.annotations.DoNotStrip
|
||||
|
||||
/** Interface to the JavaScript Systrace Module */
|
||||
@DoNotStrip
|
||||
public interface Systrace extends JavaScriptModule {
|
||||
@DoNotStrip
|
||||
void setEnabled(boolean enabled);
|
||||
public interface Systrace : JavaScriptModule {
|
||||
@DoNotStrip public fun setEnabled(enabled: Boolean)
|
||||
}
|
||||
Reference in New Issue
Block a user