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

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

Issue 1702673002: DevTools: migrate remote debugging protocol generators to jinja2. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 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/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;

Powered by Google App Engine
This is Rietveld 408576698