| Index: third_party/WebKit/Source/platform/v8_inspector/V8RuntimeAgentImpl.h
|
| diff --git a/third_party/WebKit/Source/platform/v8_inspector/V8RuntimeAgentImpl.h b/third_party/WebKit/Source/platform/v8_inspector/V8RuntimeAgentImpl.h
|
| index a031e452d781beda99e0ae526cfd8f4e83078c65..fcb7d1b1042e33a131a9ded40343a243d7d0937f 100644
|
| --- a/third_party/WebKit/Source/platform/v8_inspector/V8RuntimeAgentImpl.h
|
| +++ b/third_party/WebKit/Source/platform/v8_inspector/V8RuntimeAgentImpl.h
|
| @@ -39,6 +39,7 @@ namespace blink {
|
|
|
| class InjectedScript;
|
| class InjectedScriptManager;
|
| +class RemoteObjectIdBase;
|
| class V8DebuggerImpl;
|
|
|
| namespace protocol {
|
| @@ -129,6 +130,14 @@ public:
|
| void addInspectedObject(PassOwnPtr<Inspectable>) override;
|
| void clearInspectedObjects() override;
|
| private:
|
| + v8::MaybeLocal<v8::Function> compileFunction(ErrorString*,
|
| + RemoteObjectIdBase*,
|
| + const String16& expression,
|
| + const String16& objectGroupName,
|
| + v8::MaybeLocal<v8::Object> extension,
|
| + OwnPtr<protocol::Runtime::RemoteObject>* result,
|
| + Maybe<bool>* wasThrown);
|
| +
|
| int m_contextGroupId;
|
| protocol::DictionaryValue* m_state;
|
| protocol::Frontend::Runtime* m_frontend;
|
|
|