| OLD | NEW |
| 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 <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| (...skipping 19 matching lines...) Expand all Loading... |
| 30 // PasswordUIView implementation. | 30 // PasswordUIView implementation. |
| 31 virtual Profile* GetProfile() OVERRIDE; | 31 virtual Profile* GetProfile() OVERRIDE; |
| 32 virtual void ShowPassword(size_t index, const string16& password_value) | 32 virtual void ShowPassword(size_t index, const string16& password_value) |
| 33 OVERRIDE; | 33 OVERRIDE; |
| 34 virtual void SetPasswordList( | 34 virtual void SetPasswordList( |
| 35 const ScopedVector<autofill::PasswordForm>& password_list, | 35 const ScopedVector<autofill::PasswordForm>& password_list, |
| 36 bool show_passwords) OVERRIDE; | 36 bool show_passwords) OVERRIDE; |
| 37 virtual void SetPasswordExceptionList( | 37 virtual void SetPasswordExceptionList( |
| 38 const ScopedVector<autofill::PasswordForm>& password_exception_list) | 38 const ScopedVector<autofill::PasswordForm>& password_exception_list) |
| 39 OVERRIDE; | 39 OVERRIDE; |
| 40 | 40 #if !defined(OS_ANDROID) |
| 41 virtual gfx::NativeWindow GetNativeWindow() OVERRIDE; |
| 42 #endif |
| 41 private: | 43 private: |
| 42 // Clears and then populates the list of passwords and password exceptions. | 44 // Clears and then populates the list of passwords and password exceptions. |
| 43 // Called when the JS PasswordManager object is initialized. | 45 // Called when the JS PasswordManager object is initialized. |
| 44 void HandleUpdatePasswordLists(const ListValue* args); | 46 void HandleUpdatePasswordLists(const ListValue* args); |
| 45 | 47 |
| 46 // Removes a saved password entry. | 48 // Removes a saved password entry. |
| 47 // |value| the entry index to be removed. | 49 // |value| the entry index to be removed. |
| 48 void HandleRemoveSavedPassword(const ListValue* args); | 50 void HandleRemoveSavedPassword(const ListValue* args); |
| 49 | 51 |
| 50 // Removes a saved password exception. | 52 // Removes a saved password exception. |
| 51 // |value| the entry index to be removed. | 53 // |value| the entry index to be removed. |
| 52 void HandleRemovePasswordException(const ListValue* args); | 54 void HandleRemovePasswordException(const ListValue* args); |
| 53 | 55 |
| 54 // Requests the plain text password for an entry to be revealed. | 56 // Requests the plain text password for an entry to be revealed. |
| 55 // |index| The index of the entry. | 57 // |index| The index of the entry. |
| 56 void HandleRequestShowPassword(const ListValue* args); | 58 void HandleRequestShowPassword(const ListValue* args); |
| 57 | 59 |
| 58 // User pref for storing accept languages. | 60 // User pref for storing accept languages. |
| 59 std::string languages_; | 61 std::string languages_; |
| 60 | 62 |
| 61 // The PasswordManagerPresenter object owned by the this view. | 63 // The PasswordManagerPresenter object owned by the this view. |
| 62 PasswordManagerPresenter password_manager_presenter_; | 64 PasswordManagerPresenter password_manager_presenter_; |
| 63 | 65 |
| 64 DISALLOW_COPY_AND_ASSIGN(PasswordManagerHandler); | 66 DISALLOW_COPY_AND_ASSIGN(PasswordManagerHandler); |
| 65 }; | 67 }; |
| 66 | 68 |
| 67 } // namespace options | 69 } // namespace options |
| 68 | 70 |
| 69 #endif // CHROME_BROWSER_UI_WEBUI_OPTIONS_PASSWORD_MANAGER_HANDLER_H_ | 71 #endif // CHROME_BROWSER_UI_WEBUI_OPTIONS_PASSWORD_MANAGER_HANDLER_H_ |
| OLD | NEW |