| 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..a556a5f6ef52b2abc4dd3daf40a2ab9d2145049e 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,7 +82,7 @@ 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,
|
| + virtual bool StartUploadRequest(const FormStructure& form,
|
| bool form_was_autofilled,
|
| const ServerFieldTypeSet& available_field_types,
|
| const std::string& login_form_signature);
|
|
|