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

Unified Diff: chrome/browser/ui/autofill/chrome_autofill_client.cc

Issue 490193003: Hook up autofill popup control elements (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix ChromeNativeTestApplication Created 6 years, 4 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: chrome/browser/ui/autofill/chrome_autofill_client.cc
diff --git a/chrome/browser/ui/autofill/chrome_autofill_client.cc b/chrome/browser/ui/autofill/chrome_autofill_client.cc
index 628e2e86c9be4e62bbc50beac1a7a6aba41db7f1..d34482d41d498f16274bf8b686dfa486c6480dfe 100644
--- a/chrome/browser/ui/autofill/chrome_autofill_client.cc
+++ b/chrome/browser/ui/autofill/chrome_autofill_client.cc
@@ -28,6 +28,7 @@
#include "ui/gfx/rect.h"
#if defined(OS_ANDROID)
+#include "chrome/browser/android/chromium_application.h"
#include "chrome/browser/ui/android/autofill/autofill_logger_android.h"
#endif
@@ -90,7 +91,7 @@ PrefService* ChromeAutofillClient::GetPrefs() {
void ChromeAutofillClient::ShowAutofillSettings() {
#if defined(OS_ANDROID)
- NOTIMPLEMENTED();
+ chrome::android::ChromiumApplication::ShowAutofillSettings();
#else
Browser* browser = chrome::FindBrowserWithWebContents(web_contents_);
if (browser)

Powered by Google App Engine
This is Rietveld 408576698