Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1064)

Side by Side Diff: components/password_manager/core/browser/stub_password_manager_driver.h

Issue 2762233004: Fix autofill popup controller key press callback registration (Closed)
Patch Set: Fix typo Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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_CORE_BROWSER_STUB_PASSWORD_MANAGER_DRIVER_H_ 5 #ifndef COMPONENTS_PASSWORD_MANAGER_CORE_BROWSER_STUB_PASSWORD_MANAGER_DRIVER_H_
6 #define COMPONENTS_PASSWORD_MANAGER_CORE_BROWSER_STUB_PASSWORD_MANAGER_DRIVER_H_ 6 #define COMPONENTS_PASSWORD_MANAGER_CORE_BROWSER_STUB_PASSWORD_MANAGER_DRIVER_H_
7 7
8 #include "base/macros.h" 8 #include "base/macros.h"
9 #include "components/password_manager/core/browser/password_manager_driver.h" 9 #include "components/password_manager/core/browser/password_manager_driver.h"
10 10
(...skipping 18 matching lines...) Expand all
29 void FillSuggestion(const base::string16& username, 29 void FillSuggestion(const base::string16& username,
30 const base::string16& password) override; 30 const base::string16& password) override;
31 void PreviewSuggestion(const base::string16& username, 31 void PreviewSuggestion(const base::string16& username,
32 const base::string16& password) override; 32 const base::string16& password) override;
33 void ShowInitialPasswordAccountSuggestions( 33 void ShowInitialPasswordAccountSuggestions(
34 const autofill::PasswordFormFillData& form_data) override; 34 const autofill::PasswordFormFillData& form_data) override;
35 void ClearPreviewedForm() override; 35 void ClearPreviewedForm() override;
36 PasswordGenerationManager* GetPasswordGenerationManager() override; 36 PasswordGenerationManager* GetPasswordGenerationManager() override;
37 PasswordManager* GetPasswordManager() override; 37 PasswordManager* GetPasswordManager() override;
38 PasswordAutofillManager* GetPasswordAutofillManager() override; 38 PasswordAutofillManager* GetPasswordAutofillManager() override;
39 autofill::AutofillDriver* GetAutofillDriver() override;
39 40
40 private: 41 private:
41 DISALLOW_COPY_AND_ASSIGN(StubPasswordManagerDriver); 42 DISALLOW_COPY_AND_ASSIGN(StubPasswordManagerDriver);
42 }; 43 };
43 44
44 } // namespace password_manager 45 } // namespace password_manager
45 46
46 #endif // COMPONENTS_PASSWORD_MANAGER_CORE_BROWSER_STUB_PASSWORD_MANAGER_DRIVER _H_ 47 #endif // COMPONENTS_PASSWORD_MANAGER_CORE_BROWSER_STUB_PASSWORD_MANAGER_DRIVER _H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698