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/basictypes.h" | 8 #include "base/basictypes.h" |
9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
10 #include "chrome/browser/password_manager/content_password_manager_driver.h" | 10 #include "components/password_manager/content/browser/content_password_manager_d
river.h" |
11 #include "components/password_manager/core/browser/password_manager_client.h" | 11 #include "components/password_manager/core/browser/password_manager_client.h" |
12 #include "content/public/browser/web_contents_observer.h" | 12 #include "content/public/browser/web_contents_observer.h" |
13 #include "content/public/browser/web_contents_user_data.h" | 13 #include "content/public/browser/web_contents_user_data.h" |
14 #include "ui/gfx/rect.h" | 14 #include "ui/gfx/rect.h" |
15 | 15 |
16 class PasswordGenerationManager; | 16 class PasswordGenerationManager; |
17 class PasswordManager; | 17 class PasswordManager; |
18 class Profile; | 18 class Profile; |
19 | 19 |
20 namespace autofill { | 20 namespace autofill { |
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
109 | 109 |
110 // Points to an active logger instance to use for, e.g., reporting progress on | 110 // Points to an active logger instance to use for, e.g., reporting progress on |
111 // saving passwords. If there is no active logger (most of the time), the | 111 // saving passwords. If there is no active logger (most of the time), the |
112 // pointer will be NULL. | 112 // pointer will be NULL. |
113 PasswordManagerLogger* logger_; | 113 PasswordManagerLogger* logger_; |
114 | 114 |
115 DISALLOW_COPY_AND_ASSIGN(ChromePasswordManagerClient); | 115 DISALLOW_COPY_AND_ASSIGN(ChromePasswordManagerClient); |
116 }; | 116 }; |
117 | 117 |
118 #endif // CHROME_BROWSER_PASSWORD_MANAGER_CHROME_PASSWORD_MANAGER_CLIENT_H_ | 118 #endif // CHROME_BROWSER_PASSWORD_MANAGER_CHROME_PASSWORD_MANAGER_CLIENT_H_ |
OLD | NEW |