| 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 |
| 11 #include "base/supports_user_data.h" | 11 #include "base/supports_user_data.h" |
| 12 #include "components/autofill/content/common/autofill_agent.mojom.h" | 12 #include "components/autofill/content/common/autofill_agent.mojom.h" |
| 13 #include "components/autofill/content/common/autofill_driver.mojom.h" | 13 #include "components/autofill/content/common/autofill_driver.mojom.h" |
| 14 #include "components/autofill/core/browser/autofill_driver.h" | 14 #include "components/autofill/core/browser/autofill_driver.h" |
| 15 #include "components/autofill/core/browser/autofill_external_delegate.h" | 15 #include "components/autofill/core/browser/autofill_external_delegate.h" |
| 16 #include "components/autofill/core/browser/autofill_manager.h" | 16 #include "components/autofill/core/browser/autofill_manager.h" |
| 17 #include "mojo/public/cpp/bindings/binding.h" | 17 #include "mojo/public/cpp/bindings/binding.h" |
| 18 | 18 |
| 19 namespace content { | 19 namespace content { |
| 20 class BrowserContext; | |
| 21 class RenderFrameHost; | 20 class RenderFrameHost; |
| 22 struct FrameNavigateParams; | 21 struct FrameNavigateParams; |
| 23 struct LoadCommittedDetails; | 22 struct LoadCommittedDetails; |
| 24 } | 23 } |
| 25 | 24 |
| 26 namespace autofill { | 25 namespace autofill { |
| 27 | 26 |
| 28 class AutofillClient; | 27 class AutofillClient; |
| 29 | 28 |
| 30 // Class that drives autofill flow in the browser process based on | 29 // Class that drives autofill flow in the browser process based on |
| (...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 131 AutofillExternalDelegate autofill_external_delegate_; | 130 AutofillExternalDelegate autofill_external_delegate_; |
| 132 | 131 |
| 133 mojo::Binding<mojom::AutofillDriver> binding_; | 132 mojo::Binding<mojom::AutofillDriver> binding_; |
| 134 | 133 |
| 135 mojom::AutofillAgentPtr autofill_agent_; | 134 mojom::AutofillAgentPtr autofill_agent_; |
| 136 }; | 135 }; |
| 137 | 136 |
| 138 } // namespace autofill | 137 } // namespace autofill |
| 139 | 138 |
| 140 #endif // COMPONENTS_AUTOFILL_CONTENT_BROWSER_CONTENT_AUTOFILL_DRIVER_H_ | 139 #endif // COMPONENTS_AUTOFILL_CONTENT_BROWSER_CONTENT_AUTOFILL_DRIVER_H_ |
| OLD | NEW |