Chromium Code Reviews| 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 "chrome/browser/password_manager/content_password_manager_driver.h" |
| 11 #include "components/password_manager/core/browser/password_autofill_manager.h" | |
|
Garrett Casto
2014/03/12 01:09:22
Is this necessary?
Patrick Dubroy
2014/03/12 16:47:09
Whoops, fixed.
| |
| 11 #include "components/password_manager/core/browser/password_manager_client.h" | 12 #include "components/password_manager/core/browser/password_manager_client.h" |
| 12 #include "content/public/browser/web_contents_observer.h" | 13 #include "content/public/browser/web_contents_observer.h" |
| 13 #include "content/public/browser/web_contents_user_data.h" | 14 #include "content/public/browser/web_contents_user_data.h" |
| 14 #include "ui/gfx/rect.h" | 15 #include "ui/gfx/rect.h" |
| 15 | 16 |
| 16 class PasswordGenerationManager; | 17 class PasswordGenerationManager; |
| 17 class PasswordManager; | 18 class PasswordManager; |
| 18 class Profile; | 19 class Profile; |
| 19 | 20 |
| 20 namespace autofill { | 21 namespace autofill { |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 102 base::WeakPtr< | 103 base::WeakPtr< |
| 103 autofill::PasswordGenerationPopupControllerImpl> popup_controller_; | 104 autofill::PasswordGenerationPopupControllerImpl> popup_controller_; |
| 104 | 105 |
| 105 // Allows authentication callbacks to be destroyed when this client is gone. | 106 // Allows authentication callbacks to be destroyed when this client is gone. |
| 106 base::WeakPtrFactory<ChromePasswordManagerClient> weak_factory_; | 107 base::WeakPtrFactory<ChromePasswordManagerClient> weak_factory_; |
| 107 | 108 |
| 108 DISALLOW_COPY_AND_ASSIGN(ChromePasswordManagerClient); | 109 DISALLOW_COPY_AND_ASSIGN(ChromePasswordManagerClient); |
| 109 }; | 110 }; |
| 110 | 111 |
| 111 #endif // CHROME_BROWSER_PASSWORD_MANAGER_CHROME_PASSWORD_MANAGER_CLIENT_H_ | 112 #endif // CHROME_BROWSER_PASSWORD_MANAGER_CHROME_PASSWORD_MANAGER_CLIENT_H_ |
| OLD | NEW |