OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef COMPONENTS_AUTOFILL_CONTENT_BROWSER_AUTOFILL_DRIVER_IOS_H_ | 5 #ifndef COMPONENTS_AUTOFILL_CONTENT_BROWSER_AUTOFILL_DRIVER_IOS_H_ |
6 #define COMPONENTS_AUTOFILL_CONTENT_BROWSER_AUTOFILL_DRIVER_IOS_H_ | 6 #define COMPONENTS_AUTOFILL_CONTENT_BROWSER_AUTOFILL_DRIVER_IOS_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "components/autofill/core/browser/autofill_client.h" | 10 #include "components/autofill/core/browser/autofill_client.h" |
(...skipping 25 matching lines...) Expand all Loading... |
36 AutofillManager::AutofillDownloadManagerState enable_download_manager); | 36 AutofillManager::AutofillDownloadManagerState enable_download_manager); |
37 | 37 |
38 // AutofillDriver: | 38 // AutofillDriver: |
39 bool IsOffTheRecord() const override; | 39 bool IsOffTheRecord() const override; |
40 net::URLRequestContextGetter* GetURLRequestContext() override; | 40 net::URLRequestContextGetter* GetURLRequestContext() override; |
41 bool RendererIsAvailable() override; | 41 bool RendererIsAvailable() override; |
42 void SendFormDataToRenderer(int query_id, | 42 void SendFormDataToRenderer(int query_id, |
43 RendererFormDataAction action, | 43 RendererFormDataAction action, |
44 const FormData& data) override; | 44 const FormData& data) override; |
45 void PingRenderer() override; | 45 void PingRenderer() override; |
46 void DetectAccountCreationForms( | 46 void PropagateAutofillPredictions( |
47 const std::vector<autofill::FormStructure*>& forms) override; | 47 const std::vector<autofill::FormStructure*>& forms) override; |
48 void SendAutofillTypePredictionsToRenderer( | 48 void SendAutofillTypePredictionsToRenderer( |
49 const std::vector<FormStructure*>& forms) override; | 49 const std::vector<FormStructure*>& forms) override; |
50 void RendererShouldClearFilledForm() override; | 50 void RendererShouldClearFilledForm() override; |
51 void RendererShouldClearPreviewedForm() override; | 51 void RendererShouldClearPreviewedForm() override; |
52 void RendererShouldAcceptDataListSuggestion( | 52 void RendererShouldAcceptDataListSuggestion( |
53 const base::string16& value) override; | 53 const base::string16& value) override; |
54 base::SequencedWorkerPool* GetBlockingPool() override; | 54 base::SequencedWorkerPool* GetBlockingPool() override; |
55 | 55 |
56 AutofillManager* autofill_manager() { return &autofill_manager_; } | 56 AutofillManager* autofill_manager() { return &autofill_manager_; } |
(...skipping 21 matching lines...) Expand all Loading... |
78 // AutofillManager instance via which this object drives the shared Autofill | 78 // AutofillManager instance via which this object drives the shared Autofill |
79 // code. | 79 // code. |
80 AutofillManager autofill_manager_; | 80 AutofillManager autofill_manager_; |
81 // AutofillExternalDelegate instance that is passed to the AutofillManager. | 81 // AutofillExternalDelegate instance that is passed to the AutofillManager. |
82 AutofillExternalDelegate autofill_external_delegate_; | 82 AutofillExternalDelegate autofill_external_delegate_; |
83 }; | 83 }; |
84 | 84 |
85 } // namespace autofill | 85 } // namespace autofill |
86 | 86 |
87 #endif // COMPONENTS_AUTOFILL_CONTENT_BROWSER_AUTOFILL_DRIVER_IOS_H_ | 87 #endif // COMPONENTS_AUTOFILL_CONTENT_BROWSER_AUTOFILL_DRIVER_IOS_H_ |
OLD | NEW |