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

Unified Diff: src/inspector/InjectedScript.h

Issue 2359533002: [inspector] replaced V8_INSPECTOR* macros with macros from base/macros.h (Closed)
Patch Set: Created 4 years, 3 months 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 | « src/inspector/BUILD.gn ('k') | src/inspector/InjectedScript.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/inspector/InjectedScript.h
diff --git a/src/inspector/InjectedScript.h b/src/inspector/InjectedScript.h
index 2c5c8835f69fb6df8c8d1f428b9dcca5b9b4a23e..62b3c225a2bca0aa7ab40b2dfd3e463588ccfaed 100644
--- a/src/inspector/InjectedScript.h
+++ b/src/inspector/InjectedScript.h
@@ -31,7 +31,7 @@
#ifndef V8_INSPECTOR_INJECTEDSCRIPT_H_
#define V8_INSPECTOR_INJECTEDSCRIPT_H_
-#include "src/inspector/Allocator.h"
+#include "src/base/macros.h"
#include "src/inspector/InjectedScriptNative.h"
#include "src/inspector/InspectedContext.h"
#include "src/inspector/V8Console.h"
@@ -52,7 +52,7 @@ using protocol::ErrorString;
using protocol::Maybe;
class InjectedScript final {
- V8_INSPECTOR_DISALLOW_COPY(InjectedScript);
+ DISALLOW_COPY_AND_ASSIGN(InjectedScript);
public:
static std::unique_ptr<InjectedScript> create(InspectedContext*);
@@ -141,7 +141,7 @@ class InjectedScript final {
};
class ContextScope : public Scope {
- V8_INSPECTOR_DISALLOW_COPY(ContextScope);
+ DISALLOW_COPY_AND_ASSIGN(ContextScope);
public:
ContextScope(ErrorString*, V8InspectorImpl*, int contextGroupId,
@@ -154,7 +154,7 @@ class InjectedScript final {
};
class ObjectScope : public Scope {
- V8_INSPECTOR_DISALLOW_COPY(ObjectScope);
+ DISALLOW_COPY_AND_ASSIGN(ObjectScope);
public:
ObjectScope(ErrorString*, V8InspectorImpl*, int contextGroupId,
@@ -171,7 +171,7 @@ class InjectedScript final {
};
class CallFrameScope : public Scope {
- V8_INSPECTOR_DISALLOW_COPY(CallFrameScope);
+ DISALLOW_COPY_AND_ASSIGN(CallFrameScope);
public:
CallFrameScope(ErrorString*, V8InspectorImpl*, int contextGroupId,
« no previous file with comments | « src/inspector/BUILD.gn ('k') | src/inspector/InjectedScript.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698