mirror of
https://github.com/zhigang1992/react-native.git
synced 2026-05-12 11:40:33 +08:00
log constants map conversion for UIManagerModule and I18N Module
Reviewed By: yungsters Differential Revision: D4473401 fbshipit-source-id: 7c2a7484305a099fe6a49cbcd0a1d9d9d082a3f8
This commit is contained in:
committed by
Facebook Github Bot
parent
2a5cb9a773
commit
5c7009d147
@@ -0,0 +1,12 @@
|
||||
// Copyright 2004-present Facebook. All Rights Reserved.
|
||||
|
||||
package com.facebook.react.bridge;
|
||||
|
||||
/**
|
||||
* Interface on native modules for the bridge to call for TTI start and end markers.
|
||||
*/
|
||||
public interface NativeModuleLogger {
|
||||
|
||||
void startConstantsMapConversion();
|
||||
void endConstantsMapConversion();
|
||||
}
|
||||
@@ -42,4 +42,16 @@ public class ReactMarkerConstants {
|
||||
"CORE_REACT_PACKAGE_GET_REACT_MODULE_INFO_PROVIDER_START";
|
||||
public static final String CORE_REACT_PACKAGE_GET_REACT_MODULE_INFO_PROVIDER_END =
|
||||
"CORE_REACT_PACKAGE_GET_REACT_MODULE_INFO_PROVIDER_END";
|
||||
public static final String UI_MANAGER_MODULE_CONSTANTS_CONVERT_START =
|
||||
"UI_MANAGER_MODULE_CONSTANTS_CONVERT_START";
|
||||
public static final String UI_MANAGER_MODULE_CONSTANTS_CONVERT_END =
|
||||
"UI_MANAGER_MODULE_CONSTANTS_CONVERT_END";
|
||||
public static final String CREATE_I18N_MODULE_CONSTANTS_START =
|
||||
"CREATE_I18N_MODULE_CONSTANTS_START";
|
||||
public static final String CREATE_I18N_MODULE_CONSTANTS_END =
|
||||
"CREATE_I18N_MODULE_CONSTANTS_END";
|
||||
public static final String I18N_MODULE_CONSTANTS_CONVERT_START =
|
||||
"I18N_MODULE_CONSTANTS_CONVERT_START";
|
||||
public static final String I18N_MODULE_CONSTANTS_CONVERT_END =
|
||||
"I18N_MODULE_CONSTANTS_CONVERT_END";
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user