| 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 #import "ios/chrome/browser/ui/autofill/autofill_client_ios.h" | 5 #import "ios/chrome/browser/ui/autofill/autofill_client_ios.h" |
| 6 | 6 |
| 7 #include <utility> | 7 #include <utility> |
| 8 | 8 |
| 9 #include "base/bind.h" | 9 #include "base/bind.h" |
| 10 #include "base/memory/ptr_util.h" | 10 #include "base/memory/ptr_util.h" |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 #include "components/prefs/pref_service.h" | 21 #include "components/prefs/pref_service.h" |
| 22 #include "google_apis/gaia/identity_provider.h" | 22 #include "google_apis/gaia/identity_provider.h" |
| 23 #include "ios/chrome/browser/application_context.h" | 23 #include "ios/chrome/browser/application_context.h" |
| 24 #include "ios/chrome/browser/autofill/personal_data_manager_factory.h" | 24 #include "ios/chrome/browser/autofill/personal_data_manager_factory.h" |
| 25 #include "ios/chrome/browser/browser_state/chrome_browser_state.h" | 25 #include "ios/chrome/browser/browser_state/chrome_browser_state.h" |
| 26 #include "ios/chrome/browser/infobars/infobar_utils.h" | 26 #include "ios/chrome/browser/infobars/infobar_utils.h" |
| 27 #include "ios/chrome/browser/ui/autofill/card_unmask_prompt_view_bridge.h" | 27 #include "ios/chrome/browser/ui/autofill/card_unmask_prompt_view_bridge.h" |
| 28 #include "ios/chrome/browser/web_data_service_factory.h" | 28 #include "ios/chrome/browser/web_data_service_factory.h" |
| 29 #include "ios/public/provider/chrome/browser/chrome_browser_provider.h" | 29 #include "ios/public/provider/chrome/browser/chrome_browser_provider.h" |
| 30 | 30 |
| 31 #if !defined(__has_feature) || !__has_feature(objc_arc) |
| 32 #error "This file requires ARC support." |
| 33 #endif |
| 34 |
| 31 namespace autofill { | 35 namespace autofill { |
| 32 | 36 |
| 33 AutofillClientIOS::AutofillClientIOS( | 37 AutofillClientIOS::AutofillClientIOS( |
| 34 ios::ChromeBrowserState* browser_state, | 38 ios::ChromeBrowserState* browser_state, |
| 35 infobars::InfoBarManager* infobar_manager, | 39 infobars::InfoBarManager* infobar_manager, |
| 36 id<AutofillClientIOSBridge> bridge, | 40 id<AutofillClientIOSBridge> bridge, |
| 37 password_manager::PasswordGenerationManager* password_generation_manager, | 41 password_manager::PasswordGenerationManager* password_generation_manager, |
| 38 std::unique_ptr<IdentityProvider> identity_provider) | 42 std::unique_ptr<IdentityProvider> identity_provider) |
| 39 : browser_state_(browser_state), | 43 : browser_state_(browser_state), |
| 40 infobar_manager_(infobar_manager), | 44 infobar_manager_(infobar_manager), |
| (...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 197 | 201 |
| 198 void AutofillClientIOS::StartSigninFlow() { | 202 void AutofillClientIOS::StartSigninFlow() { |
| 199 NOTIMPLEMENTED(); | 203 NOTIMPLEMENTED(); |
| 200 } | 204 } |
| 201 | 205 |
| 202 void AutofillClientIOS::ShowHttpNotSecureExplanation() { | 206 void AutofillClientIOS::ShowHttpNotSecureExplanation() { |
| 203 NOTIMPLEMENTED(); | 207 NOTIMPLEMENTED(); |
| 204 } | 208 } |
| 205 | 209 |
| 206 } // namespace autofill | 210 } // namespace autofill |
| OLD | NEW |