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

Unified Diff: third_party/WebKit/Source/platform/v8_inspector/public/V8ContextInfo.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/public/V8ContextInfo.h
diff --git a/third_party/WebKit/Source/platform/v8_inspector/public/V8ContextInfo.h b/third_party/WebKit/Source/platform/v8_inspector/public/V8ContextInfo.h
index 290d336779ff8b2dc074da90a39c3a8c0f6255e8..09405ec43629c487898d58b35b80c3fae00a577e 100644
--- a/third_party/WebKit/Source/platform/v8_inspector/public/V8ContextInfo.h
+++ b/third_party/WebKit/Source/platform/v8_inspector/public/V8ContextInfo.h
@@ -14,10 +14,9 @@ namespace blink {
class V8ContextInfo {
public:
- V8ContextInfo(v8::Local<v8::Context> context, int contextGroupId, bool isMainInGroup, bool isDefault, const String16& origin, const String16& humanReadableName, const String16& frameId)
+ V8ContextInfo(v8::Local<v8::Context> context, int contextGroupId, bool isDefault, const String16& origin, const String16& humanReadableName, const String16& frameId)
: context(context)
, contextGroupId(contextGroupId)
- , isMainInGroup(isMainInGroup)
, isDefault(isDefault)
, origin(origin)
, humanReadableName(humanReadableName)
@@ -30,7 +29,6 @@ public:
// V8DebuggerAgent to notify about events in the context.
// |contextGroupId| must be non-0.
int contextGroupId;
- bool isMainInGroup;
bool isDefault;
const String16 origin;
const String16 humanReadableName;

Powered by Google App Engine
This is Rietveld 408576698