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_CONTENT_PASSWORD_MANAGER_DRIVER_H_ | 5 #ifndef COMPONENTS_PASSWORD_MANAGER_CONTENT_BROWSER_CONTENT_PASSWORD_MANAGER_DRI
VER_H_ |
6 #define CHROME_BROWSER_PASSWORD_MANAGER_CONTENT_PASSWORD_MANAGER_DRIVER_H_ | 6 #define COMPONENTS_PASSWORD_MANAGER_CONTENT_BROWSER_CONTENT_PASSWORD_MANAGER_DRI
VER_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 "components/password_manager/core/browser/password_generation_manager.h
" | 10 #include "components/password_manager/core/browser/password_generation_manager.h
" |
11 #include "components/password_manager/core/browser/password_manager.h" | 11 #include "components/password_manager/core/browser/password_manager.h" |
12 #include "components/password_manager/core/browser/password_manager_driver.h" | 12 #include "components/password_manager/core/browser/password_manager_driver.h" |
13 #include "content/public/browser/web_contents_observer.h" | 13 #include "content/public/browser/web_contents_observer.h" |
14 | 14 |
15 namespace autofill { | 15 namespace autofill { |
16 class AutofillManager; | 16 class AutofillManager; |
(...skipping 30 matching lines...) Expand all Loading... |
47 const content::LoadCommittedDetails& details, | 47 const content::LoadCommittedDetails& details, |
48 const content::FrameNavigateParams& params) OVERRIDE; | 48 const content::FrameNavigateParams& params) OVERRIDE; |
49 | 49 |
50 private: | 50 private: |
51 PasswordManager password_manager_; | 51 PasswordManager password_manager_; |
52 PasswordGenerationManager password_generation_manager_; | 52 PasswordGenerationManager password_generation_manager_; |
53 | 53 |
54 DISALLOW_COPY_AND_ASSIGN(ContentPasswordManagerDriver); | 54 DISALLOW_COPY_AND_ASSIGN(ContentPasswordManagerDriver); |
55 }; | 55 }; |
56 | 56 |
57 #endif // CHROME_BROWSER_PASSWORD_MANAGER_CONTENT_PASSWORD_MANAGER_DRIVER_H_ | 57 #endif // COMPONENTS_PASSWORD_MANAGER_CONTENT_BROWSER_CONTENT_PASSWORD_MANAGER_
DRIVER_H_ |
OLD | NEW |