| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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_DOM_UI_OPTIONS_PASSWORDS_EXCEPTIONS_HANDLER_H_ | 5 #ifndef CHROME_BROWSER_DOM_UI_OPTIONS_PASSWORDS_EXCEPTIONS_HANDLER_H_ |
| 6 #define CHROME_BROWSER_DOM_UI_OPTIONS_PASSWORDS_EXCEPTIONS_HANDLER_H_ | 6 #define CHROME_BROWSER_DOM_UI_OPTIONS_PASSWORDS_EXCEPTIONS_HANDLER_H_ |
| 7 | 7 |
| 8 #include "chrome/browser/dom_ui/options/options_ui.h" | 8 #include "chrome/browser/dom_ui/options/options_ui.h" |
| 9 #include "chrome/browser/password_manager/password_store.h" | 9 #include "chrome/browser/password_manager/password_store.h" |
| 10 #include "chrome/browser/profile.h" | 10 #include "chrome/browser/profiles/profile.h" |
| 11 | 11 |
| 12 class PasswordsExceptionsHandler : public OptionsPageUIHandler { | 12 class PasswordsExceptionsHandler : public OptionsPageUIHandler { |
| 13 public: | 13 public: |
| 14 PasswordsExceptionsHandler(); | 14 PasswordsExceptionsHandler(); |
| 15 virtual ~PasswordsExceptionsHandler(); | 15 virtual ~PasswordsExceptionsHandler(); |
| 16 | 16 |
| 17 // OptionsUIHandler implementation. | 17 // OptionsUIHandler implementation. |
| 18 virtual void GetLocalizedValues(DictionaryValue* localized_strings); | 18 virtual void GetLocalizedValues(DictionaryValue* localized_strings); |
| 19 | 19 |
| 20 virtual void Initialize(); | 20 virtual void Initialize(); |
| (...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 108 std::vector<webkit_glue::PasswordForm*> password_list_; | 108 std::vector<webkit_glue::PasswordForm*> password_list_; |
| 109 std::vector<webkit_glue::PasswordForm*> password_exception_list_; | 109 std::vector<webkit_glue::PasswordForm*> password_exception_list_; |
| 110 | 110 |
| 111 // User's pref | 111 // User's pref |
| 112 std::string languages_; | 112 std::string languages_; |
| 113 | 113 |
| 114 DISALLOW_COPY_AND_ASSIGN(PasswordsExceptionsHandler); | 114 DISALLOW_COPY_AND_ASSIGN(PasswordsExceptionsHandler); |
| 115 }; | 115 }; |
| 116 | 116 |
| 117 #endif // CHROME_BROWSER_DOM_UI_OPTIONS_PASSWORDS_EXCEPTIONS_HANDLER_H_ | 117 #endif // CHROME_BROWSER_DOM_UI_OPTIONS_PASSWORDS_EXCEPTIONS_HANDLER_H_ |
| OLD | NEW |