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

Unified Diff: components/autofill/core/browser/autofill_download_manager.h

Issue 1457793002: [Autofill] No longer pass FormStructure pointers in ParseQueryResponse. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: added AutofillManager tests Created 5 years, 1 month 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 | components/autofill/core/browser/autofill_download_manager.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/autofill/core/browser/autofill_download_manager.h
diff --git a/components/autofill/core/browser/autofill_download_manager.h b/components/autofill/core/browser/autofill_download_manager.h
index 86d9a55b10ad1db6c4e63531a191cbe1a26b24ff..b48764c893658b5b9f17d3c8c07e506cd12f985c 100644
--- a/components/autofill/core/browser/autofill_download_manager.h
+++ b/components/autofill/core/browser/autofill_download_manager.h
@@ -38,11 +38,11 @@ class AutofillDownloadManager : public net::URLFetcherDelegate {
class Observer {
public:
// Called when field type predictions are successfully received from the
- // server. |response_xml| contains the server response for the
- // |queried_forms|.
+ // server. |response_xml| contains the server response for the forms
+ // represented by |form_signatures|.
virtual void OnLoadedServerPredictions(
const std::string& response_xml,
- const std::vector<FormStructure*>& queried_forms) = 0;
+ const std::vector<std::string>& form_signatures) = 0;
// These notifications are used to help with testing.
// Called when heuristic either successfully considered for upload and
« no previous file with comments | « no previous file | components/autofill/core/browser/autofill_download_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698