| Index: third_party/WebKit/Source/platform/v8_inspector/public/V8RuntimeAgent.h
|
| diff --git a/third_party/WebKit/Source/platform/v8_inspector/public/V8RuntimeAgent.h b/third_party/WebKit/Source/platform/v8_inspector/public/V8RuntimeAgent.h
|
| index dac4356225e4733a780c2fb81372415f8fd529ec..acff3a0ebf91c1758a78dddd4138f204e7889f38 100644
|
| --- a/third_party/WebKit/Source/platform/v8_inspector/public/V8RuntimeAgent.h
|
| +++ b/third_party/WebKit/Source/platform/v8_inspector/public/V8RuntimeAgent.h
|
| @@ -35,13 +35,13 @@ public:
|
| // Embedder API.
|
| using ClearConsoleCallback = Function<void()>;
|
| virtual void setClearConsoleCallback(PassOwnPtr<ClearConsoleCallback>) = 0;
|
| - using InspectCallback = Function<void(PassRefPtr<protocol::TypeBuilder::Runtime::RemoteObject>, PassRefPtr<JSONObject>)>;
|
| + using InspectCallback = Function<void(PassOwnPtr<protocol::Runtime::RemoteObject>, PassRefPtr<JSONObject>)>;
|
| virtual void setInspectObjectCallback(PassOwnPtr<InspectCallback>) = 0;
|
| // FIXME: remove while preserving the default context evaluation.
|
| virtual int ensureDefaultContextAvailable(v8::Local<v8::Context>) = 0;
|
| - virtual PassRefPtr<protocol::TypeBuilder::Runtime::RemoteObject> wrapObject(v8::Local<v8::Context>, v8::Local<v8::Value>, const String& groupName, bool generatePreview = false) = 0;
|
| + virtual PassOwnPtr<protocol::Runtime::RemoteObject> wrapObject(v8::Local<v8::Context>, v8::Local<v8::Value>, const String& groupName, bool generatePreview = false) = 0;
|
| // FIXME: remove when console.table moves into V8 inspector.
|
| - virtual PassRefPtr<protocol::TypeBuilder::Runtime::RemoteObject> wrapTable(v8::Local<v8::Context>, v8::Local<v8::Value> table, v8::Local<v8::Value> columns) = 0;
|
| + virtual PassOwnPtr<protocol::Runtime::RemoteObject> wrapTable(v8::Local<v8::Context>, v8::Local<v8::Value> table, v8::Local<v8::Value> columns) = 0;
|
| virtual v8::Local<v8::Value> findObject(const String& objectId, v8::Local<v8::Context>* = nullptr, String* objectGroup = nullptr) = 0;
|
| virtual void disposeObjectGroup(const String&) = 0;
|
| virtual void addInspectedObject(PassOwnPtr<Inspectable>) = 0;
|
|
|