mirror of
https://github.com/status-im/react-native.git
synced 2025-01-10 09:35:48 +00:00
24fe8b7e92
Reviewed By: mhorowitz Differential Revision: D3237829 fb-gh-sync-id: 348c7d1e2810400c1259e3d99c2d026da4a39816 fbshipit-source-id: 348c7d1e2810400c1259e3d99c2d026da4a39816
28 lines
493 B
C++
28 lines
493 B
C++
// Copyright 2004-present Facebook. All Rights Reserved.
|
|
|
|
#include "Platform.h"
|
|
|
|
namespace facebook {
|
|
namespace react {
|
|
|
|
namespace ReactMarker {
|
|
LogMarker logMarker;
|
|
};
|
|
|
|
namespace WebWorkerUtil {
|
|
WebWorkerQueueFactory createWebWorkerThread;
|
|
LoadScriptFromAssets loadScriptFromAssets;
|
|
LoadScriptFromNetworkSync loadScriptFromNetworkSync;
|
|
};
|
|
|
|
namespace PerfLogging {
|
|
InstallNativeHooks installNativeHooks;
|
|
};
|
|
|
|
namespace JSNativeHooks {
|
|
Hook loggingHook = nullptr;
|
|
Hook nowHook = nullptr;
|
|
}
|
|
|
|
} }
|