mirror of
https://github.com/status-im/react-native.git
synced 2025-02-10 08:26:23 +00:00
Reviewed By: AaaChiuuu Differential Revision: D4916449 fbshipit-source-id: a447233d3b7cfee98db2ce00f1c0505d513e2429
22 lines
322 B
C++
22 lines
322 B
C++
// Copyright 2004-present Facebook. All Rights Reserved.
|
|
|
|
#include "Platform.h"
|
|
|
|
namespace facebook {
|
|
namespace react {
|
|
|
|
namespace ReactMarker {
|
|
LogMarker logMarker;
|
|
};
|
|
|
|
namespace PerfLogging {
|
|
InstallNativeHooks installNativeHooks;
|
|
};
|
|
|
|
namespace JSNativeHooks {
|
|
Hook loggingHook = nullptr;
|
|
Hook nowHook = nullptr;
|
|
}
|
|
|
|
} }
|