Chromium Code Reviews| 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 41359f04b627a9ef2efa544dd323c4d75f44bab6..8fd1335a2d14e4366712b66993f635a82efc7b78 100644 |
| --- a/third_party/WebKit/Source/platform/v8_inspector/InspectedContext.h |
| +++ b/third_party/WebKit/Source/platform/v8_inspector/InspectedContext.h |
| @@ -24,6 +24,7 @@ public: |
| v8::Local<v8::Context> context() const; |
| int contextId() const { return m_contextId; } |
| + int contextGroupId() const { return m_contextGroupId; } |
| bool isDefault() const { return m_isDefault; } |
| String16 origin() const { return m_origin; } |
| String16 humanReadableName() const { return m_humanReadableName; } |
| @@ -41,7 +42,7 @@ public: |
| private: |
| friend class V8DebuggerImpl; |
| - InspectedContext(V8DebuggerImpl*, const V8ContextInfo&, int contextId); |
| + InspectedContext(V8DebuggerImpl*, const V8ContextInfo&, int contextId, bool hasMemoryAttribute); |
|
dgozman
2016/04/12 23:21:57
hasMemoryAttribute is already a part of V8ContextI
kozy
2016/04/12 23:34:25
Done.
|
| static void weakCallback(const v8::WeakCallbackInfo<InspectedContext>&); |
| V8DebuggerImpl* m_debugger; |