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

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

Issue 1859293002: [DevTools] Move Console to v8_inspector (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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 41359f04b627a9ef2efa544dd323c4d75f44bab6..8fd1335a2d14e4366712b66993f635a82efc7b78 100644
--- a/third_party/WebKit/Source/platform/v8_inspector/InspectedContext.h
+++ b/third_party/WebKit/Source/platform/v8_inspector/InspectedContext.h
@@ -24,6 +24,7 @@ public:
v8::Local<v8::Context> context() const;
int contextId() const { return m_contextId; }
+ int contextGroupId() const { return m_contextGroupId; }
bool isDefault() const { return m_isDefault; }
String16 origin() const { return m_origin; }
String16 humanReadableName() const { return m_humanReadableName; }
@@ -41,7 +42,7 @@ public:
private:
friend class V8DebuggerImpl;
- InspectedContext(V8DebuggerImpl*, const V8ContextInfo&, int contextId);
+ InspectedContext(V8DebuggerImpl*, const V8ContextInfo&, int contextId, bool hasMemoryAttribute);
dgozman 2016/04/12 23:21:57 hasMemoryAttribute is already a part of V8ContextI
kozy 2016/04/12 23:34:25 Done.
static void weakCallback(const v8::WeakCallbackInfo<InspectedContext>&);
V8DebuggerImpl* m_debugger;

Powered by Google App Engine
This is Rietveld 408576698