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

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

Issue 1377923002: [Autofill] Only query for newly parsed forms (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix text output Created 5 years, 3 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: 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 1c72eaf6b6c4ef2e028474ecba421181415b3433..eaf7b49bb890142fd45184bd24154d5011baf15a 100644
--- a/components/autofill/core/browser/autofill_download_manager.h
+++ b/components/autofill/core/browser/autofill_download_manager.h
@@ -67,7 +67,7 @@ class AutofillDownloadManager : public net::URLFetcherDelegate {
// Starts a query request to Autofill servers. The observer is called with the
// list of the fields of all requested forms.
// |forms| - array of forms aggregated in this request.
- bool StartQueryRequest(const std::vector<FormStructure*>& forms);
+ virtual bool StartQueryRequest(const std::vector<FormStructure*>& forms);
// Starts an upload request for the given |form|, unless throttled by the
// server. The probability of the request going over the wire is
@@ -82,10 +82,11 @@ class AutofillDownloadManager : public net::URLFetcherDelegate {
// Note that in this case, |form.FormSignature()| gives the signature for the
// registration form on which the password was generated, rather than the
// submitted form's signature.
- bool StartUploadRequest(const FormStructure& form,
- bool form_was_autofilled,
- const ServerFieldTypeSet& available_field_types,
- const std::string& login_form_signature);
+ virtual bool StartUploadRequest(
+ const FormStructure& form,
+ bool form_was_autofilled,
+ const ServerFieldTypeSet& available_field_types,
+ const std::string& login_form_signature);
private:
friend class AutofillDownloadTest;

Powered by Google App Engine
This is Rietveld 408576698