| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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_PASSWORDS_IOS_CHROME_PASSWORD_MANAGER_CLIENT_H_ | 5 #ifndef IOS_CHROME_BROWSER_PASSWORDS_IOS_CHROME_PASSWORD_MANAGER_CLIENT_H_ |
| 6 #define IOS_CHROME_BROWSER_PASSWORDS_IOS_CHROME_PASSWORD_MANAGER_CLIENT_H_ | 6 #define IOS_CHROME_BROWSER_PASSWORDS_IOS_CHROME_PASSWORD_MANAGER_CLIENT_H_ |
| 7 | 7 |
| 8 #include "base/macros.h" | 8 #include "base/macros.h" |
| 9 #include "base/prefs/pref_member.h" | |
| 10 #import "components/password_manager/core/browser/password_manager_client.h" | 9 #import "components/password_manager/core/browser/password_manager_client.h" |
| 11 #include "components/password_manager/sync/browser/sync_credentials_filter.h" | 10 #include "components/password_manager/sync/browser/sync_credentials_filter.h" |
| 11 #include "components/prefs/pref_member.h" |
| 12 | 12 |
| 13 namespace ios { | 13 namespace ios { |
| 14 class ChromeBrowserState; | 14 class ChromeBrowserState; |
| 15 } | 15 } |
| 16 | 16 |
| 17 namespace password_manager { | 17 namespace password_manager { |
| 18 class PasswordFormManager; | 18 class PasswordFormManager; |
| 19 } | 19 } |
| 20 | 20 |
| 21 @protocol PasswordManagerClientDelegate | 21 @protocol PasswordManagerClientDelegate |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 // The preference associated with | 70 // The preference associated with |
| 71 // password_manager::prefs::kPasswordManagerSavingEnabled. | 71 // password_manager::prefs::kPasswordManagerSavingEnabled. |
| 72 BooleanPrefMember saving_passwords_enabled_; | 72 BooleanPrefMember saving_passwords_enabled_; |
| 73 | 73 |
| 74 const password_manager::SyncCredentialsFilter credentials_filter_; | 74 const password_manager::SyncCredentialsFilter credentials_filter_; |
| 75 | 75 |
| 76 DISALLOW_COPY_AND_ASSIGN(IOSChromePasswordManagerClient); | 76 DISALLOW_COPY_AND_ASSIGN(IOSChromePasswordManagerClient); |
| 77 }; | 77 }; |
| 78 | 78 |
| 79 #endif // IOS_CHROME_BROWSER_PASSWORDS_IOS_CHROME_PASSWORD_MANAGER_CLIENT_H_ | 79 #endif // IOS_CHROME_BROWSER_PASSWORDS_IOS_CHROME_PASSWORD_MANAGER_CLIENT_H_ |
| OLD | NEW |