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

Unified Diff: chrome/browser/autofill/autofill_manager.cc

Issue 9814014: Fix remaining link errors in autofill for Android. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 9 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/autofill/autofill_manager.cc
diff --git a/chrome/browser/autofill/autofill_manager.cc b/chrome/browser/autofill/autofill_manager.cc
index 571e05f3f09cfb1485277aabbed70caa556b2b9d..e4f465dc36c78e4f5a067a620da4e5586ab54044 100644
--- a/chrome/browser/autofill/autofill_manager.cc
+++ b/chrome/browser/autofill/autofill_manager.cc
@@ -640,10 +640,14 @@ void AutofillManager::OnFillAutofillFormData(int query_id,
}
void AutofillManager::OnShowAutofillDialog() {
+#if defined(OS_ANDROID)
+ NOTIMPLEMENTED();
+#else
Browser* browser = BrowserList::GetLastActiveWithProfile(
Profile::FromBrowserContext(web_contents()->GetBrowserContext()));
if (browser)
browser->ShowOptionsTab(chrome::kAutofillSubPage);
+#endif
Ilya Sherman 2012/03/21 21:50:37 nit: Please add " // #if defined(OS_ANDROID)" to
}
void AutofillManager::OnDidPreviewAutofillFormData() {

Powered by Google App Engine
This is Rietveld 408576698