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

Side by Side Diff: chrome/browser/ui/webui/options/password_manager_handler.h

Issue 1846623002: Remove password-manager-reauthentication flag (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Just rebased Created 4 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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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_UI_WEBUI_OPTIONS_PASSWORD_MANAGER_HANDLER_H_ 5 #ifndef CHROME_BROWSER_UI_WEBUI_OPTIONS_PASSWORD_MANAGER_HANDLER_H_
6 #define CHROME_BROWSER_UI_WEBUI_OPTIONS_PASSWORD_MANAGER_HANDLER_H_ 6 #define CHROME_BROWSER_UI_WEBUI_OPTIONS_PASSWORD_MANAGER_HANDLER_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 9
10 #include <string> 10 #include <string>
(...skipping 21 matching lines...) Expand all
32 void RegisterMessages() override; 32 void RegisterMessages() override;
33 33
34 // PasswordUIView implementation. 34 // PasswordUIView implementation.
35 Profile* GetProfile() override; 35 Profile* GetProfile() override;
36 void ShowPassword( 36 void ShowPassword(
37 size_t index, 37 size_t index,
38 const std::string& origin_url, 38 const std::string& origin_url,
39 const std::string& username, 39 const std::string& username,
40 const base::string16& password_value) override; 40 const base::string16& password_value) override;
41 void SetPasswordList( 41 void SetPasswordList(
42 const std::vector<scoped_ptr<autofill::PasswordForm>>& password_list, 42 const std::vector<scoped_ptr<autofill::PasswordForm>>& password_list)
43 bool show_passwords) override; 43 override;
44 void SetPasswordExceptionList( 44 void SetPasswordExceptionList(
45 const std::vector<scoped_ptr<autofill::PasswordForm>>& 45 const std::vector<scoped_ptr<autofill::PasswordForm>>&
46 password_exception_list) override; 46 password_exception_list) override;
47 #if !defined(OS_ANDROID) 47 #if !defined(OS_ANDROID)
48 gfx::NativeWindow GetNativeWindow() const override; 48 gfx::NativeWindow GetNativeWindow() const override;
49 #endif 49 #endif
50 private: 50 private:
51 // Clears and then populates the list of passwords and password exceptions. 51 // Clears and then populates the list of passwords and password exceptions.
52 // Called when the JS PasswordManager object is initialized. 52 // Called when the JS PasswordManager object is initialized.
53 void HandleUpdatePasswordLists(const base::ListValue* args); 53 void HandleUpdatePasswordLists(const base::ListValue* args);
(...skipping 15 matching lines...) Expand all
69 69
70 // The PasswordManagerPresenter object owned by the this view. 70 // The PasswordManagerPresenter object owned by the this view.
71 PasswordManagerPresenter password_manager_presenter_; 71 PasswordManagerPresenter password_manager_presenter_;
72 72
73 DISALLOW_COPY_AND_ASSIGN(PasswordManagerHandler); 73 DISALLOW_COPY_AND_ASSIGN(PasswordManagerHandler);
74 }; 74 };
75 75
76 } // namespace options 76 } // namespace options
77 77
78 #endif // CHROME_BROWSER_UI_WEBUI_OPTIONS_PASSWORD_MANAGER_HANDLER_H_ 78 #endif // CHROME_BROWSER_UI_WEBUI_OPTIONS_PASSWORD_MANAGER_HANDLER_H_
OLDNEW
« no previous file with comments | « chrome/browser/ui/passwords/password_ui_view.h ('k') | chrome/browser/ui/webui/options/password_manager_handler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698