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 09405ec43629c487898d58b35b80c3fae00a577e..f82c7bb452addb5856be58e42d4ce069d9c6a4e4 100644 |
--- a/third_party/WebKit/Source/platform/v8_inspector/public/V8ContextInfo.h |
+++ b/third_party/WebKit/Source/platform/v8_inspector/public/V8ContextInfo.h |
@@ -14,13 +14,14 @@ namespace blink { |
class V8ContextInfo { |
public: |
- V8ContextInfo(v8::Local<v8::Context> context, int contextGroupId, 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, bool hasMemoryOnConsole) |
: context(context) |
, contextGroupId(contextGroupId) |
, isDefault(isDefault) |
, origin(origin) |
, humanReadableName(humanReadableName) |
, frameId(frameId) |
+ , hasMemoryOnConsole(hasMemoryOnConsole) |
{ |
} |
@@ -33,6 +34,7 @@ public: |
const String16 origin; |
const String16 humanReadableName; |
const String16 frameId; |
+ bool hasMemoryOnConsole; |
}; |
using V8ContextInfoVector = protocol::Vector<V8ContextInfo>; |