2014-10-31 18:17:05 +00:00
|
|
|
// Copyright (c) 2013 GitHub, Inc.
|
2014-04-25 09:49:37 +00:00
|
|
|
// Use of this source code is governed by the MIT license that can be
|
2013-12-11 07:48:19 +00:00
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2014-04-17 05:45:14 +00:00
|
|
|
#ifndef ATOM_COMMON_NODE_INCLUDES_H_
|
|
|
|
#define ATOM_COMMON_NODE_INCLUDES_H_
|
2013-12-11 07:48:19 +00:00
|
|
|
|
2015-09-07 08:29:54 +00:00
|
|
|
#include "base/logging.h"
|
|
|
|
|
2013-12-15 06:20:28 +00:00
|
|
|
// Include common headers for using node APIs.
|
2013-12-11 07:48:19 +00:00
|
|
|
|
2015-04-01 13:33:08 +00:00
|
|
|
#define BUILDING_NODE_EXTENSION
|
|
|
|
|
2018-03-12 05:22:34 +00:00
|
|
|
// The following define makes sure that we do not include the macros
|
|
|
|
// again. But we still need the tracing functions, so declaring them.
|
|
|
|
#define SRC_TRACING_TRACE_EVENT_H_
|
|
|
|
|
2015-01-07 04:53:06 +00:00
|
|
|
#undef ASSERT
|
2013-12-11 07:48:19 +00:00
|
|
|
#undef CHECK
|
2014-01-10 10:24:44 +00:00
|
|
|
#undef CHECK_EQ
|
|
|
|
#undef CHECK_NE
|
2014-06-28 11:31:23 +00:00
|
|
|
#undef CHECK_GE
|
|
|
|
#undef CHECK_GT
|
|
|
|
#undef CHECK_LE
|
|
|
|
#undef CHECK_LT
|
2016-07-21 06:51:57 +00:00
|
|
|
#undef UNLIKELY
|
2013-12-11 07:48:19 +00:00
|
|
|
#undef DISALLOW_COPY_AND_ASSIGN
|
2015-01-07 04:53:06 +00:00
|
|
|
#undef NO_RETURN
|
2017-01-23 06:53:29 +00:00
|
|
|
#undef LIKELY
|
2016-05-10 02:05:42 +00:00
|
|
|
#undef arraysize
|
2016-06-18 13:26:26 +00:00
|
|
|
#undef debug_string // This is defined in macOS 10.9 SDK in AssertMacros.h.
|
2013-12-16 06:46:05 +00:00
|
|
|
#include "vendor/node/src/env-inl.h"
|
2018-04-18 01:44:10 +00:00
|
|
|
#include "vendor/node/src/env.h"
|
2013-12-11 07:48:19 +00:00
|
|
|
#include "vendor/node/src/node.h"
|
2014-04-22 15:07:21 +00:00
|
|
|
#include "vendor/node/src/node_buffer.h"
|
2017-05-15 16:30:55 +00:00
|
|
|
#include "vendor/node/src/node_debug_options.h"
|
2013-12-11 07:48:19 +00:00
|
|
|
#include "vendor/node/src/node_internals.h"
|
2017-11-03 09:01:34 +00:00
|
|
|
#include "vendor/node/src/node_platform.h"
|
2013-12-11 07:48:19 +00:00
|
|
|
|
2018-03-12 07:46:23 +00:00
|
|
|
namespace node {
|
|
|
|
namespace tracing {
|
|
|
|
|
|
|
|
class TraceEventHelper {
|
|
|
|
public:
|
|
|
|
static v8::TracingController* GetTracingController();
|
|
|
|
static void SetTracingController(v8::TracingController* controller);
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace tracing
|
|
|
|
} // namespace node
|
|
|
|
|
2014-04-17 05:45:14 +00:00
|
|
|
#endif // ATOM_COMMON_NODE_INCLUDES_H_
|