mirror of
https://github.com/zhigang1992/react-native.git
synced 2026-05-06 09:13:27 +08:00
More perf markers
Reviewed By: javache Differential Revision: D2895501 fb-gh-sync-id: bc06e2dc45a6f9201c25271ae4467cc93eb44545
This commit is contained in:
committed by
facebook-github-bot-8
parent
77ad9459f5
commit
fa2b53166e
@@ -0,0 +1,24 @@
|
||||
// Copyright 2004-present Facebook. All Rights Reserved.
|
||||
|
||||
package com.facebook.react.bridge;
|
||||
|
||||
/**
|
||||
* Constants used by ReactMarker.
|
||||
*/
|
||||
public class ReactMarkerConstants {
|
||||
|
||||
public static final String CREATE_REACT_CONTEXT_START = "CREATE_REACT_CONTEXT_START";
|
||||
public static final String CREATE_REACT_CONTEXT_END = "CREATE_REACT_CONTEXT_END";
|
||||
public static final String PROCESS_PACKAGES_START = "PROCESS_PACKAGES_START";
|
||||
public static final String PROCESS_PACKAGES_END = "PROCESS_PACKAGES_END";
|
||||
public static final String BUILD_NATIVE_MODULE_REGISTRY_START =
|
||||
"BUILD_NATIVE_MODULE_REGISTRY_START";
|
||||
public static final String BUILD_NATIVE_MODULE_REGISTRY_END =
|
||||
"BUILD_NATIVE_MODULE_REGISTRY_END";
|
||||
public static final String BUILD_JS_MODULE_CONFIG_START = "BUILD_JS_MODULE_CONFIG_START";
|
||||
public static final String BUILD_JS_MODULE_CONFIG_END = "BUILD_JS_MODULE_CONFIG_END";
|
||||
public static final String CREATE_CATALYST_INSTANCE_START = "CREATE_CATALYST_INSTANCE_START";
|
||||
public static final String CREATE_CATALYST_INSTANCE_END = "CREATE_CATALYST_INSTANCE_END";
|
||||
public static final String RUN_JS_BUNDLE_START = "RUN_JS_BUNDLE_START";
|
||||
public static final String RUN_JS_BUNDLE_END = "RUN_JS_BUNDLE_END";
|
||||
}
|
||||
Reference in New Issue
Block a user