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 |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
59 const std::map<autofill::FormData, | 59 const std::map<autofill::FormData, |
60 autofill::PasswordFormFieldPredictionMap>& predictions) | 60 autofill::PasswordFormFieldPredictionMap>& predictions) |
61 override; | 61 override; |
62 void GeneratedPasswordAccepted(const base::string16& password) override; | 62 void GeneratedPasswordAccepted(const base::string16& password) override; |
63 void FillSuggestion(const base::string16& username, | 63 void FillSuggestion(const base::string16& username, |
64 const base::string16& password) override; | 64 const base::string16& password) override; |
65 void PreviewSuggestion(const base::string16& username, | 65 void PreviewSuggestion(const base::string16& username, |
66 const base::string16& password) override; | 66 const base::string16& password) override; |
67 void ClearPreviewedForm() override; | 67 void ClearPreviewedForm() override; |
68 void ForceSavePassword() override; | 68 void ForceSavePassword() override; |
| 69 void SendLoggingAvailability() override; |
69 | 70 |
70 PasswordGenerationManager* GetPasswordGenerationManager() override; | 71 PasswordGenerationManager* GetPasswordGenerationManager() override; |
71 PasswordManager* GetPasswordManager() override; | 72 PasswordManager* GetPasswordManager() override; |
72 PasswordAutofillManager* GetPasswordAutofillManager() override; | 73 PasswordAutofillManager* GetPasswordAutofillManager() override; |
73 | 74 |
74 bool HandleMessage(const IPC::Message& message); | 75 bool HandleMessage(const IPC::Message& message); |
75 void DidNavigateFrame(const content::LoadCommittedDetails& details, | 76 void DidNavigateFrame(const content::LoadCommittedDetails& details, |
76 const content::FrameNavigateParams& params); | 77 const content::FrameNavigateParams& params); |
77 | 78 |
78 // Pass-throughs to PasswordManager. | 79 // Pass-throughs to PasswordManager. |
(...skipping 22 matching lines...) Expand all Loading... |
101 // the latter two classes can reference to the same instance without sending | 102 // the latter two classes can reference to the same instance without sending |
102 // it to each other over IPC. The counter below is used to generate new IDs. | 103 // it to each other over IPC. The counter below is used to generate new IDs. |
103 int next_free_key_; | 104 int next_free_key_; |
104 | 105 |
105 DISALLOW_COPY_AND_ASSIGN(ContentPasswordManagerDriver); | 106 DISALLOW_COPY_AND_ASSIGN(ContentPasswordManagerDriver); |
106 }; | 107 }; |
107 | 108 |
108 } // namespace password_manager | 109 } // namespace password_manager |
109 | 110 |
110 #endif // COMPONENTS_PASSWORD_MANAGER_CONTENT_BROWSER_CONTENT_PASSWORD_MANAGER_
DRIVER_H_ | 111 #endif // COMPONENTS_PASSWORD_MANAGER_CONTENT_BROWSER_CONTENT_PASSWORD_MANAGER_
DRIVER_H_ |
OLD | NEW |