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

Unified Diff: third_party/WebKit/Source/platform/v8_inspector/public/V8ContextInfo.h

Issue 1859293002: [DevTools] Move Console to v8_inspector (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebased 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 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>;

Powered by Google App Engine
This is Rietveld 408576698