| 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 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 125 // AutofillManager instance via which this object drives the shared Autofill | 125 // AutofillManager instance via which this object drives the shared Autofill |
| 126 // code. | 126 // code. |
| 127 std::unique_ptr<AutofillManager> autofill_manager_; | 127 std::unique_ptr<AutofillManager> autofill_manager_; |
| 128 | 128 |
| 129 // AutofillExternalDelegate instance that this object instantiates in the | 129 // AutofillExternalDelegate instance that this object instantiates in the |
| 130 // case where the Autofill native UI is enabled. | 130 // case where the Autofill native UI is enabled. |
| 131 AutofillExternalDelegate autofill_external_delegate_; | 131 AutofillExternalDelegate autofill_external_delegate_; |
| 132 | 132 |
| 133 mojo::Binding<mojom::AutofillDriver> binding_; | 133 mojo::Binding<mojom::AutofillDriver> binding_; |
| 134 | 134 |
| 135 mojom::AutofillAgentPtr autofill_agent_; | 135 mojom::AutofillAgentPtr mojo_autofill_agent_; |
| 136 }; | 136 }; |
| 137 | 137 |
| 138 } // namespace autofill | 138 } // namespace autofill |
| 139 | 139 |
| 140 #endif // COMPONENTS_AUTOFILL_CONTENT_BROWSER_CONTENT_AUTOFILL_DRIVER_H_ | 140 #endif // COMPONENTS_AUTOFILL_CONTENT_BROWSER_CONTENT_AUTOFILL_DRIVER_H_ |
| OLD | NEW |