2016-05-04 02:29:58 +00:00
|
|
|
// Copyright 2004-present Facebook. All Rights Reserved.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#ifdef WITH_JSC_EXTRA_TRACING
|
|
|
|
|
2016-11-22 14:05:36 +00:00
|
|
|
#include <jschelpers/JavaScriptCore.h>
|
|
|
|
|
2016-05-04 02:29:58 +00:00
|
|
|
namespace facebook {
|
|
|
|
namespace react {
|
|
|
|
|
|
|
|
void addNativeProfilingHooks(JSGlobalContextRef ctx);
|
|
|
|
void stopAndOutputProfilingFile(
|
|
|
|
JSContextRef ctx,
|
|
|
|
JSStringRef title,
|
|
|
|
const char *filename);
|
|
|
|
|
|
|
|
} }
|
|
|
|
|
|
|
|
#endif
|