Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(118)

Unified Diff: include/v8-tracing.h

Issue 2471583004: [Tracing] Make TracingCategoryObserver v8 internal. (Closed)
Patch Set: use unique_ptr Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « BUILD.gn ('k') | src/d8.cc » ('j') | src/d8.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: include/v8-tracing.h
diff --git a/include/v8-tracing.h b/include/v8-tracing.h
deleted file mode 100644
index dfa144e2dd788b4409703c7cd3baedce7d5b00e2..0000000000000000000000000000000000000000
--- a/include/v8-tracing.h
+++ /dev/null
@@ -1,29 +0,0 @@
-// Copyright 2016 the V8 project authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef V8_V8_TRACING_H_
-#define V8_V8_TRACING_H_
-
-#include "v8.h" // NOLINT(build/include)
-
-namespace v8 {
-namespace tracing {
-
-class V8_EXPORT TracingCategoryObserver {
- public:
- enum Mode {
- ENABLED_BY_NATIVE = 1 << 0,
- ENABLED_BY_TRACING = 1 << 1,
- };
- static std::unique_ptr<TracingCategoryObserver> Create();
- virtual ~TracingCategoryObserver() = default;
-
- protected:
- TracingCategoryObserver() = default;
-};
-
-} // namespace tracing
-} // namespace v8
-
-#endif // V8_V8_TRACING_H_
« no previous file with comments | « BUILD.gn ('k') | src/d8.cc » ('j') | src/d8.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698