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

Unified Diff: content/browser/web_contents/web_contents_impl.cc

Issue 11270018: [autofill] Adding new API to request an interactive autocomplete UI flow. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 2 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: content/browser/web_contents/web_contents_impl.cc
diff --git a/content/browser/web_contents/web_contents_impl.cc b/content/browser/web_contents/web_contents_impl.cc
index c09ad4df91122d240b7d91f9a9d0893a74823af9..e14286f06f6640a6e3e27b5c9d2fb8bd842e9fbf 100644
--- a/content/browser/web_contents/web_contents_impl.cc
+++ b/content/browser/web_contents/web_contents_impl.cc
@@ -1530,6 +1530,11 @@ void WebContentsImpl::RequestMediaAccessPermission(
callback.Run(content::MediaStreamDevices());
}
+void WebContentsImpl::RequestAutocomplete() {
+ if (delegate_)
+ delegate_->RequestAutocomplete(this);
Dan Beam 2012/10/24 20:48:35 not sure what to do without a delegate here...
Evan Stade 2012/10/24 21:59:44 as above in RequestMediaAccessPermission, you shou
Dan Beam 2012/10/26 03:06:05 triggering a cancel now
+}
+
#if defined(OS_ANDROID)
void WebContentsImpl::AttachLayer(WebKit::WebLayer* layer) {
if (delegate_)

Powered by Google App Engine
This is Rietveld 408576698