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

Unified Diff: third_party/WebKit/Source/core/inspector/InspectorRuntimeAgent.cpp

Issue 1942073002: [DevTools] Move getCompletions to native (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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/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);

Powered by Google App Engine
This is Rietveld 408576698