Index: third_party/WebKit/Source/core/inspector/InspectorRuntimeAgent.cpp |
diff --git a/third_party/WebKit/Source/core/inspector/InspectorRuntimeAgent.cpp b/third_party/WebKit/Source/core/inspector/InspectorRuntimeAgent.cpp |
index 29023417757019590bb4de643ee531a0f98594ad..3d93e46b229911cb6bb970bc5310ea7b02dfbd70 100644 |
--- a/third_party/WebKit/Source/core/inspector/InspectorRuntimeAgent.cpp |
+++ b/third_party/WebKit/Source/core/inspector/InspectorRuntimeAgent.cpp |
@@ -129,6 +129,14 @@ void InspectorRuntimeAgent::getProperties(ErrorString* errorString, |
m_v8RuntimeAgent->getProperties(errorString, objectId, ownProperties, accessorPropertiesOnly, generatePreview, result, internalProperties, exceptionDetails); |
} |
+void InspectorRuntimeAgent::getCompletions(ErrorString* errorString, |
+ const Maybe<String16>& objectId, |
+ const Maybe<String16>& primitiveType, |
+ OwnPtr<protocol::Array<String16>>* completions) |
+{ |
+ m_v8RuntimeAgent->getCompletions(errorString, objectId, primitiveType, completions); |
+} |
+ |
void InspectorRuntimeAgent::releaseObject(ErrorString* errorString, const String16& objectId) |
{ |
m_v8RuntimeAgent->releaseObject(errorString, objectId); |