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() { |