| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_CONTENT_AUTOFILL_DRIVER_H_ | 5 #ifndef COMPONENTS_AUTOFILL_CONTENT_BROWSER_CONTENT_AUTOFILL_DRIVER_H_ |
| 6 #define COMPONENTS_AUTOFILL_CONTENT_BROWSER_CONTENT_AUTOFILL_DRIVER_H_ | 6 #define COMPONENTS_AUTOFILL_CONTENT_BROWSER_CONTENT_AUTOFILL_DRIVER_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 void RendererShouldAcceptDataListSuggestion( | 61 void RendererShouldAcceptDataListSuggestion( |
| 62 const base::string16& value) override; | 62 const base::string16& value) override; |
| 63 void RendererShouldClearFilledForm() override; | 63 void RendererShouldClearFilledForm() override; |
| 64 void RendererShouldClearPreviewedForm() override; | 64 void RendererShouldClearPreviewedForm() override; |
| 65 void RendererShouldFillFieldWithValue(const base::string16& value) override; | 65 void RendererShouldFillFieldWithValue(const base::string16& value) override; |
| 66 void RendererShouldPreviewFieldWithValue( | 66 void RendererShouldPreviewFieldWithValue( |
| 67 const base::string16& value) override; | 67 const base::string16& value) override; |
| 68 void PopupHidden() override; | 68 void PopupHidden() override; |
| 69 gfx::RectF TransformBoundingBoxToViewportCoordinates( | 69 gfx::RectF TransformBoundingBoxToViewportCoordinates( |
| 70 const gfx::RectF& bounding_box) override; | 70 const gfx::RectF& bounding_box) override; |
| 71 void DidInteractWithCreditCardForm() override; |
| 71 | 72 |
| 72 // mojom::AutofillDriver: | 73 // mojom::AutofillDriver: |
| 73 void FirstUserGestureObserved() override; | 74 void FirstUserGestureObserved() override; |
| 74 void FormsSeen(const std::vector<FormData>& forms, | 75 void FormsSeen(const std::vector<FormData>& forms, |
| 75 base::TimeTicks timestamp) override; | 76 base::TimeTicks timestamp) override; |
| 76 void WillSubmitForm(const FormData& form, base::TimeTicks timestamp) override; | 77 void WillSubmitForm(const FormData& form, base::TimeTicks timestamp) override; |
| 77 void FormSubmitted(const FormData& form) override; | 78 void FormSubmitted(const FormData& form) override; |
| 78 void TextFieldDidChange(const FormData& form, | 79 void TextFieldDidChange(const FormData& form, |
| 79 const FormFieldData& field, | 80 const FormFieldData& field, |
| 80 base::TimeTicks timestamp) override; | 81 base::TimeTicks timestamp) override; |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 131 AutofillExternalDelegate autofill_external_delegate_; | 132 AutofillExternalDelegate autofill_external_delegate_; |
| 132 | 133 |
| 133 mojo::Binding<mojom::AutofillDriver> binding_; | 134 mojo::Binding<mojom::AutofillDriver> binding_; |
| 134 | 135 |
| 135 mojom::AutofillAgentPtr autofill_agent_; | 136 mojom::AutofillAgentPtr autofill_agent_; |
| 136 }; | 137 }; |
| 137 | 138 |
| 138 } // namespace autofill | 139 } // namespace autofill |
| 139 | 140 |
| 140 #endif // COMPONENTS_AUTOFILL_CONTENT_BROWSER_CONTENT_AUTOFILL_DRIVER_H_ | 141 #endif // COMPONENTS_AUTOFILL_CONTENT_BROWSER_CONTENT_AUTOFILL_DRIVER_H_ |
| OLD | NEW |