| 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 COMPONENTS_PASSWORD_MANAGER_CONTENT_BROWSER_CONTENT_PASSWORD_MANAGER_DRI
VER_H_ | 5 #ifndef COMPONENTS_PASSWORD_MANAGER_CONTENT_BROWSER_CONTENT_PASSWORD_MANAGER_DRI
VER_H_ |
| 6 #define COMPONENTS_PASSWORD_MANAGER_CONTENT_BROWSER_CONTENT_PASSWORD_MANAGER_DRI
VER_H_ | 6 #define COMPONENTS_PASSWORD_MANAGER_CONTENT_BROWSER_CONTENT_PASSWORD_MANAGER_DRI
VER_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| 11 #include "base/basictypes.h" | |
| 12 #include "base/compiler_specific.h" | 11 #include "base/compiler_specific.h" |
| 12 #include "base/macros.h" |
| 13 #include "components/autofill/core/common/password_form_field_prediction_map.h" | 13 #include "components/autofill/core/common/password_form_field_prediction_map.h" |
| 14 #include "components/autofill/core/common/password_form_generation_data.h" | 14 #include "components/autofill/core/common/password_form_generation_data.h" |
| 15 #include "components/password_manager/core/browser/password_autofill_manager.h" | 15 #include "components/password_manager/core/browser/password_autofill_manager.h" |
| 16 #include "components/password_manager/core/browser/password_generation_manager.h
" | 16 #include "components/password_manager/core/browser/password_generation_manager.h
" |
| 17 #include "components/password_manager/core/browser/password_manager.h" | 17 #include "components/password_manager/core/browser/password_manager.h" |
| 18 #include "components/password_manager/core/browser/password_manager_driver.h" | 18 #include "components/password_manager/core/browser/password_manager_driver.h" |
| 19 | 19 |
| 20 namespace autofill { | 20 namespace autofill { |
| 21 class AutofillManager; | 21 class AutofillManager; |
| 22 struct PasswordForm; | 22 struct PasswordForm; |
| (...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 103 // the latter two classes can reference to the same instance without sending | 103 // the latter two classes can reference to the same instance without sending |
| 104 // it to each other over IPC. The counter below is used to generate new IDs. | 104 // it to each other over IPC. The counter below is used to generate new IDs. |
| 105 int next_free_key_; | 105 int next_free_key_; |
| 106 | 106 |
| 107 DISALLOW_COPY_AND_ASSIGN(ContentPasswordManagerDriver); | 107 DISALLOW_COPY_AND_ASSIGN(ContentPasswordManagerDriver); |
| 108 }; | 108 }; |
| 109 | 109 |
| 110 } // namespace password_manager | 110 } // namespace password_manager |
| 111 | 111 |
| 112 #endif // COMPONENTS_PASSWORD_MANAGER_CONTENT_BROWSER_CONTENT_PASSWORD_MANAGER_
DRIVER_H_ | 112 #endif // COMPONENTS_PASSWORD_MANAGER_CONTENT_BROWSER_CONTENT_PASSWORD_MANAGER_
DRIVER_H_ |
| OLD | NEW |