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 e83ce52dd52c717bdfa0d2e5fa2cca51a6cdfdfe..343f2337c0fb4fe56add165c6bd7246316f4c05d 100644 |
--- a/third_party/WebKit/Source/platform/v8_inspector/InjectedScript.h |
+++ b/third_party/WebKit/Source/platform/v8_inspector/InjectedScript.h |
@@ -61,6 +61,8 @@ public: |
InspectedContext* context() const { return m_context; } |
void getProperties(ErrorString*, v8::Local<v8::Object>, const String16& groupName, bool ownProperties, bool accessorPropertiesOnly, bool generatePreview, OwnPtr<protocol::Array<protocol::Runtime::PropertyDescriptor>>* result, Maybe<protocol::Runtime::ExceptionDetails>*); |
+ void getCompletions(ErrorString*, v8::Local<v8::Value>, OwnPtr<protocol::Array<String16>>*); |
+ void getCompletions(ErrorString*, const String16& primitiveType, OwnPtr<protocol::Array<String16>>*); |
void releaseObject(const String16& objectId); |
PassOwnPtr<protocol::Runtime::RemoteObject> wrapObject(ErrorString*, v8::Local<v8::Value>, const String16& groupName, bool forceValueType = false, bool generatePreview = false) const; |