| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_PASSWORD_MANAGER_H_ | 5 #ifndef CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_MANAGER_H_ |
| 6 #define CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_MANAGER_H_ | 6 #define CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_MANAGER_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
| 10 #include "base/stl_util-inl.h" | 10 #include "base/stl_util.h" |
| 11 #include "chrome/browser/password_manager/password_form_manager.h" | 11 #include "chrome/browser/password_manager/password_form_manager.h" |
| 12 #include "chrome/browser/prefs/pref_member.h" | 12 #include "chrome/browser/prefs/pref_member.h" |
| 13 #include "chrome/browser/ui/login/login_model.h" | 13 #include "chrome/browser/ui/login/login_model.h" |
| 14 #include "content/browser/tab_contents/tab_contents_observer.h" | 14 #include "content/browser/tab_contents/tab_contents_observer.h" |
| 15 #include "webkit/glue/password_form.h" | 15 #include "webkit/glue/password_form.h" |
| 16 #include "webkit/glue/password_form_dom_manager.h" | 16 #include "webkit/glue/password_form_dom_manager.h" |
| 17 | 17 |
| 18 class PasswordManagerDelegate; | 18 class PasswordManagerDelegate; |
| 19 class PasswordManagerTest; | 19 class PasswordManagerTest; |
| 20 class PasswordFormManager; | 20 class PasswordFormManager; |
| (...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 109 LoginModelObserver* observer_; | 109 LoginModelObserver* observer_; |
| 110 | 110 |
| 111 // Set to false to disable the password manager (will no longer fill | 111 // Set to false to disable the password manager (will no longer fill |
| 112 // passwords or ask you if you want to save passwords). | 112 // passwords or ask you if you want to save passwords). |
| 113 BooleanPrefMember password_manager_enabled_; | 113 BooleanPrefMember password_manager_enabled_; |
| 114 | 114 |
| 115 DISALLOW_COPY_AND_ASSIGN(PasswordManager); | 115 DISALLOW_COPY_AND_ASSIGN(PasswordManager); |
| 116 }; | 116 }; |
| 117 | 117 |
| 118 #endif // CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_MANAGER_H_ | 118 #endif // CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_MANAGER_H_ |
| OLD | NEW |