| 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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 const FormData& data) override; | 44 const FormData& data) override; |
| 45 void PropagateAutofillPredictions( | 45 void PropagateAutofillPredictions( |
| 46 const std::vector<autofill::FormStructure*>& forms) override; | 46 const std::vector<autofill::FormStructure*>& forms) override; |
| 47 void SendAutofillTypePredictionsToRenderer( | 47 void SendAutofillTypePredictionsToRenderer( |
| 48 const std::vector<FormStructure*>& forms) override; | 48 const std::vector<FormStructure*>& forms) override; |
| 49 void RendererShouldClearFilledForm() override; | 49 void RendererShouldClearFilledForm() override; |
| 50 void RendererShouldClearPreviewedForm() override; | 50 void RendererShouldClearPreviewedForm() override; |
| 51 void RendererShouldAcceptDataListSuggestion( | 51 void RendererShouldAcceptDataListSuggestion( |
| 52 const base::string16& value) override; | 52 const base::string16& value) override; |
| 53 base::SequencedWorkerPool* GetBlockingPool() override; | 53 base::SequencedWorkerPool* GetBlockingPool() override; |
| 54 void DidInteractWithCreditCardForm() override; |
| 54 | 55 |
| 55 AutofillManager* autofill_manager() { return &autofill_manager_; } | 56 AutofillManager* autofill_manager() { return &autofill_manager_; } |
| 56 | 57 |
| 57 void RendererShouldFillFieldWithValue(const base::string16& value) override; | 58 void RendererShouldFillFieldWithValue(const base::string16& value) override; |
| 58 void RendererShouldPreviewFieldWithValue( | 59 void RendererShouldPreviewFieldWithValue( |
| 59 const base::string16& value) override; | 60 const base::string16& value) override; |
| 60 void PopupHidden() override; | 61 void PopupHidden() override; |
| 61 gfx::RectF TransformBoundingBoxToViewportCoordinates( | 62 gfx::RectF TransformBoundingBoxToViewportCoordinates( |
| 62 const gfx::RectF& bounding_box) override; | 63 const gfx::RectF& bounding_box) override; |
| 63 | 64 |
| (...skipping 15 matching lines...) Expand all Loading... |
| 79 // AutofillManager instance via which this object drives the shared Autofill | 80 // AutofillManager instance via which this object drives the shared Autofill |
| 80 // code. | 81 // code. |
| 81 AutofillManager autofill_manager_; | 82 AutofillManager autofill_manager_; |
| 82 // AutofillExternalDelegate instance that is passed to the AutofillManager. | 83 // AutofillExternalDelegate instance that is passed to the AutofillManager. |
| 83 AutofillExternalDelegate autofill_external_delegate_; | 84 AutofillExternalDelegate autofill_external_delegate_; |
| 84 }; | 85 }; |
| 85 | 86 |
| 86 } // namespace autofill | 87 } // namespace autofill |
| 87 | 88 |
| 88 #endif // COMPONENTS_AUTOFILL_CONTENT_BROWSER_AUTOFILL_DRIVER_IOS_H_ | 89 #endif // COMPONENTS_AUTOFILL_CONTENT_BROWSER_AUTOFILL_DRIVER_IOS_H_ |
| OLD | NEW |