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 IOS_CHROME_BROWSER_UI_AUTOFILL_AUTOFILL_CLIENT_IOS_H_ | 5 #ifndef IOS_CHROME_BROWSER_UI_AUTOFILL_AUTOFILL_CLIENT_IOS_H_ |
6 #define IOS_CHROME_BROWSER_UI_AUTOFILL_AUTOFILL_CLIENT_IOS_H_ | 6 #define IOS_CHROME_BROWSER_UI_AUTOFILL_AUTOFILL_CLIENT_IOS_H_ |
7 | 7 |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
| 11 #include "base/macros.h" |
11 #include "base/memory/scoped_ptr.h" | 12 #include "base/memory/scoped_ptr.h" |
12 #include "components/autofill/core/browser/autofill_client.h" | 13 #include "components/autofill/core/browser/autofill_client.h" |
13 #include "components/autofill/core/browser/ui/card_unmask_prompt_controller_impl
.h" | 14 #include "components/autofill/core/browser/ui/card_unmask_prompt_controller_impl
.h" |
14 #include "components/autofill/ios/browser/autofill_client_ios_bridge.h" | 15 #include "components/autofill/ios/browser/autofill_client_ios_bridge.h" |
15 | 16 |
16 class IdentityProvider; | 17 class IdentityProvider; |
17 | 18 |
18 namespace infobars { | 19 namespace infobars { |
19 class InfoBarManager; | 20 class InfoBarManager; |
20 } | 21 } |
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
92 password_manager::PasswordGenerationManager* password_generation_manager_; | 93 password_manager::PasswordGenerationManager* password_generation_manager_; |
93 scoped_ptr<IdentityProvider> identity_provider_; | 94 scoped_ptr<IdentityProvider> identity_provider_; |
94 CardUnmaskPromptControllerImpl unmask_controller_; | 95 CardUnmaskPromptControllerImpl unmask_controller_; |
95 | 96 |
96 DISALLOW_COPY_AND_ASSIGN(AutofillClientIOS); | 97 DISALLOW_COPY_AND_ASSIGN(AutofillClientIOS); |
97 }; | 98 }; |
98 | 99 |
99 } // namespace autofill | 100 } // namespace autofill |
100 | 101 |
101 #endif // IOS_CHROME_BROWSER_UI_AUTOFILL_AUTOFILL_CLIENT_IOS_H_ | 102 #endif // IOS_CHROME_BROWSER_UI_AUTOFILL_AUTOFILL_CLIENT_IOS_H_ |
OLD | NEW |