| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 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 #ifndef COMPONENTS_PASSWORD_MANAGER_CORE_BROWSER_PASSWORD_MANAGER_H_ | 5 #ifndef COMPONENTS_PASSWORD_MANAGER_CORE_BROWSER_PASSWORD_MANAGER_H_ |
| 6 #define COMPONENTS_PASSWORD_MANAGER_CORE_BROWSER_PASSWORD_MANAGER_H_ | 6 #define COMPONENTS_PASSWORD_MANAGER_CORE_BROWSER_PASSWORD_MANAGER_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| 11 #include "base/callback.h" | 11 #include "base/callback.h" |
| 12 #include "base/macros.h" |
| 12 #include "base/memory/scoped_ptr.h" | 13 #include "base/memory/scoped_ptr.h" |
| 13 #include "base/memory/scoped_vector.h" | 14 #include "base/memory/scoped_vector.h" |
| 14 #include "base/observer_list.h" | 15 #include "base/observer_list.h" |
| 15 #include "base/stl_util.h" | 16 #include "base/stl_util.h" |
| 17 #include "build/build_config.h" |
| 16 #include "components/autofill/core/common/password_form.h" | 18 #include "components/autofill/core/common/password_form.h" |
| 17 #include "components/autofill/core/common/password_form_fill_data.h" | 19 #include "components/autofill/core/common/password_form_fill_data.h" |
| 18 #include "components/password_manager/core/browser/login_model.h" | 20 #include "components/password_manager/core/browser/login_model.h" |
| 19 #include "components/password_manager/core/browser/password_form_manager.h" | 21 #include "components/password_manager/core/browser/password_form_manager.h" |
| 20 | 22 |
| 21 class PrefRegistrySimple; | 23 class PrefRegistrySimple; |
| 22 | 24 |
| 23 namespace user_prefs { | 25 namespace user_prefs { |
| 24 class PrefRegistrySyncable; | 26 class PrefRegistrySyncable; |
| 25 } | 27 } |
| (...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 226 | 228 |
| 227 // The user-visible URL from the last time a password was provisionally saved. | 229 // The user-visible URL from the last time a password was provisionally saved. |
| 228 GURL main_frame_url_; | 230 GURL main_frame_url_; |
| 229 | 231 |
| 230 DISALLOW_COPY_AND_ASSIGN(PasswordManager); | 232 DISALLOW_COPY_AND_ASSIGN(PasswordManager); |
| 231 }; | 233 }; |
| 232 | 234 |
| 233 } // namespace password_manager | 235 } // namespace password_manager |
| 234 | 236 |
| 235 #endif // COMPONENTS_PASSWORD_MANAGER_CORE_BROWSER_PASSWORD_MANAGER_H_ | 237 #endif // COMPONENTS_PASSWORD_MANAGER_CORE_BROWSER_PASSWORD_MANAGER_H_ |
| OLD | NEW |