mirror of
https://github.com/status-im/react-native.git
synced 2025-01-09 17:15:54 +00:00
5e8f1716fc
Reviewed By: bestander Differential Revision: D3324351 fbshipit-source-id: 41fa18a23c8661440a7deff244c93278f418e1d9
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;
|
|
}
|
|
|
|
} }
|