Chromium Code Reviews| Index: third_party/WebKit/Source/platform/v8_inspector/InjectedScript.h |
| diff --git a/third_party/WebKit/Source/platform/v8_inspector/InjectedScript.h b/third_party/WebKit/Source/platform/v8_inspector/InjectedScript.h |
| index 35ca8bd9300eed411fd53cb55fff5cca358ea230..832318a743cafb8f74481a0233d36acbeba9ea1b 100644 |
| --- a/third_party/WebKit/Source/platform/v8_inspector/InjectedScript.h |
| +++ b/third_party/WebKit/Source/platform/v8_inspector/InjectedScript.h |
| @@ -53,7 +53,6 @@ class InjectedScript final { |
| public: |
| ~InjectedScript(); |
| - void getCollectionEntries(ErrorString*, const String16& objectId, OwnPtr<protocol::Array<protocol::Debugger::CollectionEntry>>* result); |
| void getProperties(ErrorString*, const String16& objectId, bool ownProperties, bool accessorPropertiesOnly, bool generatePreview, OwnPtr<protocol::Array<protocol::Runtime::PropertyDescriptor>>* result, Maybe<protocol::Runtime::ExceptionDetails>*); |
| void releaseObject(const String16& objectId); |
| @@ -61,6 +60,8 @@ public: |
| PassOwnPtr<protocol::Runtime::RemoteObject> wrapObject(ErrorString*, v8::Local<v8::Value>, const String16& groupName, bool forceValueType = false, bool generatePreview = false) const; |
| bool wrapObjectProperty(ErrorString*, v8::Local<v8::Object>, v8::Local<v8::Value> key, const String16& groupName, bool forceValueType = false, bool generatePreview = false) const; |
| + bool wrapObjectsInArray(ErrorString*, v8::Local<v8::Array>, v8::Local<v8::Value> property, const String16& groupName, bool forceValueType = false, bool generatePreview = false) const; |
|
dgozman
2016/03/21 17:21:02
v8::Local<v8::String> property
dgozman
2016/03/21 17:21:02
wrapPropertyInArray ?
kozy
2016/03/21 19:45:01
Done.
kozy
2016/03/21 19:45:01
Done.
|
| + |
| PassOwnPtr<protocol::Runtime::RemoteObject> wrapTable(v8::Local<v8::Value> table, v8::Local<v8::Value> columns) const; |
| bool findObject(ErrorString*, const RemoteObjectId&, v8::Local<v8::Value>*) const; |
| String16 objectGroupName(const RemoteObjectId&) const; |