| OLD | NEW |
| 1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 2012 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/passwords/password_controller.h" | 5 #import "ios/chrome/browser/passwords/password_controller.h" |
| 6 | 6 |
| 7 #include <stddef.h> | 7 #include <stddef.h> |
| 8 | 8 |
| 9 #include <algorithm> | 9 #include <algorithm> |
| 10 #include <utility> | 10 #include <utility> |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 #include "components/autofill/core/common/password_form.h" | 22 #include "components/autofill/core/common/password_form.h" |
| 23 #include "components/autofill/core/common/password_form_fill_data.h" | 23 #include "components/autofill/core/common/password_form_fill_data.h" |
| 24 #include "components/browser_sync/browser/profile_sync_service.h" | 24 #include "components/browser_sync/browser/profile_sync_service.h" |
| 25 #include "components/infobars/core/infobar_manager.h" | 25 #include "components/infobars/core/infobar_manager.h" |
| 26 #include "components/password_manager/core/browser/password_bubble_experiment.h" | 26 #include "components/password_manager/core/browser/password_bubble_experiment.h" |
| 27 #include "components/password_manager/core/browser/password_generation_manager.h
" | 27 #include "components/password_manager/core/browser/password_generation_manager.h
" |
| 28 #include "components/password_manager/core/browser/password_manager.h" | 28 #include "components/password_manager/core/browser/password_manager.h" |
| 29 #include "components/password_manager/core/browser/password_manager_client.h" | 29 #include "components/password_manager/core/browser/password_manager_client.h" |
| 30 #include "components/password_manager/core/browser/password_manager_driver.h" | 30 #include "components/password_manager/core/browser/password_manager_driver.h" |
| 31 #include "components/sync_driver/sync_service.h" | 31 #include "components/sync_driver/sync_service.h" |
| 32 #include "ios/chrome/browser/browser_state/chrome_browser_state.h" |
| 32 #include "ios/chrome/browser/experimental_flags.h" | 33 #include "ios/chrome/browser/experimental_flags.h" |
| 33 #include "ios/chrome/browser/infobars/infobar_manager_impl.h" | 34 #include "ios/chrome/browser/infobars/infobar_manager_impl.h" |
| 34 #import "ios/chrome/browser/passwords/ios_chrome_save_password_infobar_delegate.
h" | 35 #import "ios/chrome/browser/passwords/ios_chrome_save_password_infobar_delegate.
h" |
| 35 #import "ios/chrome/browser/passwords/js_password_manager.h" | 36 #import "ios/chrome/browser/passwords/js_password_manager.h" |
| 36 #import "ios/chrome/browser/passwords/password_generation_agent.h" | 37 #import "ios/chrome/browser/passwords/password_generation_agent.h" |
| 37 #include "ios/chrome/browser/sync/ios_chrome_profile_sync_service_factory.h" | 38 #include "ios/chrome/browser/sync/ios_chrome_profile_sync_service_factory.h" |
| 38 #include "ios/public/provider/chrome/browser/browser_state/chrome_browser_state.
h" | |
| 39 #include "ios/web/public/url_scheme_util.h" | 39 #include "ios/web/public/url_scheme_util.h" |
| 40 #import "ios/web/public/web_state/js/crw_js_injection_receiver.h" | 40 #import "ios/web/public/web_state/js/crw_js_injection_receiver.h" |
| 41 #import "ios/web/public/web_state/web_state.h" | 41 #import "ios/web/public/web_state/web_state.h" |
| 42 #import "ios/web/public/web_state/web_state_observer_bridge.h" | 42 #import "ios/web/public/web_state/web_state_observer_bridge.h" |
| 43 #include "url/gurl.h" | 43 #include "url/gurl.h" |
| 44 | 44 |
| 45 using password_manager::PasswordFormManager; | 45 using password_manager::PasswordFormManager; |
| 46 using password_manager::PasswordGenerationManager; | 46 using password_manager::PasswordGenerationManager; |
| 47 using password_manager::PasswordManager; | 47 using password_manager::PasswordManager; |
| 48 using password_manager::PasswordManagerClient; | 48 using password_manager::PasswordManagerClient; |
| (...skipping 740 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 789 | 789 |
| 790 - (PasswordManager*)passwordManager { | 790 - (PasswordManager*)passwordManager { |
| 791 return passwordManager_.get(); | 791 return passwordManager_.get(); |
| 792 } | 792 } |
| 793 | 793 |
| 794 - (JsPasswordManager*)passwordJsManager { | 794 - (JsPasswordManager*)passwordJsManager { |
| 795 return passwordJsManager_; | 795 return passwordJsManager_; |
| 796 } | 796 } |
| 797 | 797 |
| 798 @end | 798 @end |
| OLD | NEW |