| 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_PASSWORD_MANAGER_CHROME_PASSWORD_MANAGER_CLIENT_H_ | 5 #ifndef CHROME_BROWSER_PASSWORD_MANAGER_CHROME_PASSWORD_MANAGER_CLIENT_H_ |
| 6 #define CHROME_BROWSER_PASSWORD_MANAGER_CHROME_PASSWORD_MANAGER_CLIENT_H_ | 6 #define CHROME_BROWSER_PASSWORD_MANAGER_CHROME_PASSWORD_MANAGER_CLIENT_H_ |
| 7 | 7 |
| 8 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
| 9 #include "base/macros.h" | 9 #include "base/macros.h" |
| 10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
| 11 #include "base/memory/scoped_vector.h" | 11 #include "base/memory/scoped_vector.h" |
| 12 #include "base/prefs/pref_member.h" | |
| 13 #include "components/password_manager/content/browser/content_password_manager_d
river_factory.h" | 12 #include "components/password_manager/content/browser/content_password_manager_d
river_factory.h" |
| 14 #include "components/password_manager/content/browser/credential_manager_dispatc
her.h" | 13 #include "components/password_manager/content/browser/credential_manager_dispatc
her.h" |
| 15 #include "components/password_manager/core/browser/password_manager.h" | 14 #include "components/password_manager/core/browser/password_manager.h" |
| 16 #include "components/password_manager/core/browser/password_manager_client.h" | 15 #include "components/password_manager/core/browser/password_manager_client.h" |
| 17 #include "components/password_manager/sync/browser/sync_credentials_filter.h" | 16 #include "components/password_manager/sync/browser/sync_credentials_filter.h" |
| 17 #include "components/prefs/pref_member.h" |
| 18 #include "content/public/browser/web_contents_observer.h" | 18 #include "content/public/browser/web_contents_observer.h" |
| 19 #include "content/public/browser/web_contents_user_data.h" | 19 #include "content/public/browser/web_contents_user_data.h" |
| 20 #include "ui/gfx/geometry/rect.h" | 20 #include "ui/gfx/geometry/rect.h" |
| 21 | 21 |
| 22 class Profile; | 22 class Profile; |
| 23 | 23 |
| 24 namespace autofill { | 24 namespace autofill { |
| 25 class PasswordGenerationPopupObserver; | 25 class PasswordGenerationPopupObserver; |
| 26 class PasswordGenerationPopupControllerImpl; | 26 class PasswordGenerationPopupControllerImpl; |
| 27 } | 27 } |
| (...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 162 BooleanPrefMember saving_and_filling_passwords_enabled_; | 162 BooleanPrefMember saving_and_filling_passwords_enabled_; |
| 163 | 163 |
| 164 const password_manager::SyncCredentialsFilter credentials_filter_; | 164 const password_manager::SyncCredentialsFilter credentials_filter_; |
| 165 | 165 |
| 166 scoped_ptr<password_manager::LogManager> log_manager_; | 166 scoped_ptr<password_manager::LogManager> log_manager_; |
| 167 | 167 |
| 168 DISALLOW_COPY_AND_ASSIGN(ChromePasswordManagerClient); | 168 DISALLOW_COPY_AND_ASSIGN(ChromePasswordManagerClient); |
| 169 }; | 169 }; |
| 170 | 170 |
| 171 #endif // CHROME_BROWSER_PASSWORD_MANAGER_CHROME_PASSWORD_MANAGER_CLIENT_H_ | 171 #endif // CHROME_BROWSER_PASSWORD_MANAGER_CHROME_PASSWORD_MANAGER_CLIENT_H_ |
| OLD | NEW |