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

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

Issue 1873533002: [DevTools] Force context creation when runtime is enabled. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: more tests 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 607da68b61ca6a921fd42d1b75666d0d39ab8f06..41359f04b627a9ef2efa544dd323c4d75f44bab6 100644
--- a/third_party/WebKit/Source/platform/v8_inspector/InspectedContext.h
+++ b/third_party/WebKit/Source/platform/v8_inspector/InspectedContext.h
@@ -24,7 +24,6 @@ public:
v8::Local<v8::Context> context() const;
int contextId() const { return m_contextId; }
- bool isMainInGroup() const { return m_isMainInGroup; }
bool isDefault() const { return m_isDefault; }
String16 origin() const { return m_origin; }
String16 humanReadableName() const { return m_humanReadableName; }
@@ -49,7 +48,6 @@ private:
v8::Global<v8::Context> m_context;
int m_contextId;
int m_contextGroupId;
- bool m_isMainInGroup;
bool m_isDefault;
const String16 m_origin;
const String16 m_humanReadableName;

Powered by Google App Engine
This is Rietveld 408576698