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 CHROME_BROWSER_UI_AUTOFILL_CHROME_AUTOFILL_CLIENT_H_ | 5 #ifndef CHROME_BROWSER_UI_AUTOFILL_CHROME_AUTOFILL_CLIENT_H_ |
6 #define CHROME_BROWSER_UI_AUTOFILL_CHROME_AUTOFILL_CLIENT_H_ | 6 #define CHROME_BROWSER_UI_AUTOFILL_CHROME_AUTOFILL_CLIENT_H_ |
7 | 7 |
| 8 #include <vector> |
| 9 |
8 #include "base/callback.h" | 10 #include "base/callback.h" |
9 #include "base/compiler_specific.h" | 11 #include "base/compiler_specific.h" |
10 #include "base/i18n/rtl.h" | 12 #include "base/i18n/rtl.h" |
11 #include "base/memory/scoped_ptr.h" | 13 #include "base/memory/scoped_ptr.h" |
12 #include "base/memory/weak_ptr.h" | 14 #include "base/memory/weak_ptr.h" |
13 #include "chrome/browser/ui/autofill/card_unmask_prompt_controller_impl.h" | |
14 #include "components/autofill/core/browser/autofill_client.h" | 15 #include "components/autofill/core/browser/autofill_client.h" |
| 16 #include "components/autofill/core/browser/ui/card_unmask_prompt_controller_impl
.h" |
15 #include "components/ui/zoom/zoom_observer.h" | 17 #include "components/ui/zoom/zoom_observer.h" |
16 #include "content/public/browser/web_contents_observer.h" | 18 #include "content/public/browser/web_contents_observer.h" |
17 #include "content/public/browser/web_contents_user_data.h" | 19 #include "content/public/browser/web_contents_user_data.h" |
18 | 20 |
19 namespace content { | 21 namespace content { |
20 struct FrameNavigateParams; | 22 struct FrameNavigateParams; |
21 struct LoadCommittedDetails; | 23 struct LoadCommittedDetails; |
22 class WebContents; | 24 class WebContents; |
23 } | 25 } |
24 | 26 |
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
133 | 135 |
134 // The identity provider, used for Wallet integration. | 136 // The identity provider, used for Wallet integration. |
135 scoped_ptr<IdentityProvider> identity_provider_; | 137 scoped_ptr<IdentityProvider> identity_provider_; |
136 | 138 |
137 DISALLOW_COPY_AND_ASSIGN(ChromeAutofillClient); | 139 DISALLOW_COPY_AND_ASSIGN(ChromeAutofillClient); |
138 }; | 140 }; |
139 | 141 |
140 } // namespace autofill | 142 } // namespace autofill |
141 | 143 |
142 #endif // CHROME_BROWSER_UI_AUTOFILL_CHROME_AUTOFILL_CLIENT_H_ | 144 #endif // CHROME_BROWSER_UI_AUTOFILL_CHROME_AUTOFILL_CLIENT_H_ |
OLD | NEW |