| 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;
|
|
|