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

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

Issue 14017003: Disabling Autocheckout on non-Views builds. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/autofill/browser/autofill_manager.cc
diff --git a/components/autofill/browser/autofill_manager.cc b/components/autofill/browser/autofill_manager.cc
index ceaf77c2bcce590d5032470ea2f58568e2bec705..a6f6d014cc0a32e4a653a09dab948b2fa77e3069 100644
--- a/components/autofill/browser/autofill_manager.cc
+++ b/components/autofill/browser/autofill_manager.cc
@@ -879,7 +879,11 @@ void AutofillManager::OnLoadedServerPredictions(
page_meta_data.get(),
*metric_logger_);
+ // TODO(ahutter): Remove this once Autocheckout is implemented on other
+ // platforms. See http://crbug.com/173416.
+#if defined(TOOLKIT_VIEWS)
autocheckout_manager_.OnLoadedPageMetaData(page_meta_data.Pass());
+#endif // #if defined(TOOLKIT_VIEWS)
Ilya Sherman 2013/04/17 00:09:50 Can you move this into the AutocheckoutManager cod
// If the corresponding flag is set, annotate forms with the predicted types.
SendAutofillTypePredictions(form_structures_.get());
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698