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

Unified Diff: third_party/WebKit/Source/platform/v8_inspector/InspectedContext.h

Issue 2199943004: [DevTools] Rename V8Debugger to V8Inspector. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 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
Index: third_party/WebKit/Source/platform/v8_inspector/InspectedContext.h
diff --git a/third_party/WebKit/Source/platform/v8_inspector/InspectedContext.h b/third_party/WebKit/Source/platform/v8_inspector/InspectedContext.h
index ecff5e4012f008a4a0b0034dd5d011e004390c6a..aadb810c7a945596f089c0b0bccc26ea5de49e65 100644
--- a/third_party/WebKit/Source/platform/v8_inspector/InspectedContext.h
+++ b/third_party/WebKit/Source/platform/v8_inspector/InspectedContext.h
@@ -15,7 +15,7 @@ namespace blink {
class InjectedScript;
class InjectedScriptHost;
class V8ContextInfo;
-class V8DebuggerImpl;
+class V8InspectorImpl;
class InspectedContext {
PROTOCOL_DISALLOW_COPY(InspectedContext);
@@ -34,19 +34,19 @@ public:
void setReported(bool reported) { m_reported = reported; }
v8::Isolate* isolate() const;
- V8DebuggerImpl* debugger() const { return m_debugger; }
+ V8InspectorImpl* inspector() const { return m_inspector; }
InjectedScript* getInjectedScript() { return m_injectedScript.get(); }
void createInjectedScript();
void discardInjectedScript();
private:
- friend class V8DebuggerImpl;
- InspectedContext(V8DebuggerImpl*, const V8ContextInfo&, int contextId);
+ friend class V8InspectorImpl;
+ InspectedContext(V8InspectorImpl*, const V8ContextInfo&, int contextId);
static void weakCallback(const v8::WeakCallbackInfo<InspectedContext>&);
static void consoleWeakCallback(const v8::WeakCallbackInfo<InspectedContext>&);
- V8DebuggerImpl* m_debugger;
+ V8InspectorImpl* m_inspector;
v8::Global<v8::Context> m_context;
int m_contextId;
int m_contextGroupId;

Powered by Google App Engine
This is Rietveld 408576698