| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_CHROMEOS_OPTIONS_WIFI_CONFIG_VIEW_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_OPTIONS_WIFI_CONFIG_VIEW_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_OPTIONS_WIFI_CONFIG_VIEW_H_ | 6 #define CHROME_BROWSER_CHROMEOS_OPTIONS_WIFI_CONFIG_VIEW_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 virtual void ContentsChanged(views::Textfield* sender, | 46 virtual void ContentsChanged(views::Textfield* sender, |
| 47 const string16& new_contents) OVERRIDE; | 47 const string16& new_contents) OVERRIDE; |
| 48 virtual bool HandleKeyEvent(views::Textfield* sender, | 48 virtual bool HandleKeyEvent(views::Textfield* sender, |
| 49 const views::KeyEvent& key_event) OVERRIDE; | 49 const views::KeyEvent& key_event) OVERRIDE; |
| 50 | 50 |
| 51 // views::ButtonListener: | 51 // views::ButtonListener: |
| 52 virtual void ButtonPressed(views::Button* sender, | 52 virtual void ButtonPressed(views::Button* sender, |
| 53 const views::Event& event) OVERRIDE; | 53 const views::Event& event) OVERRIDE; |
| 54 | 54 |
| 55 // views::ComboboxListener: | 55 // views::ComboboxListener: |
| 56 virtual void ItemChanged(views::Combobox* combo_box, | 56 virtual void OnSelectedIndexChanged(views::Combobox* combobox) OVERRIDE; |
| 57 int prev_index, | |
| 58 int new_index) OVERRIDE; | |
| 59 | 57 |
| 60 // CertLibrary::Observer: | 58 // CertLibrary::Observer: |
| 61 virtual void OnCertificatesLoaded(bool initial_load) OVERRIDE; | 59 virtual void OnCertificatesLoaded(bool initial_load) OVERRIDE; |
| 62 | 60 |
| 63 // ChildNetworkConfigView: | 61 // ChildNetworkConfigView: |
| 64 virtual string16 GetTitle() OVERRIDE; | 62 virtual string16 GetTitle() OVERRIDE; |
| 65 virtual views::View* GetInitiallyFocusedView() OVERRIDE; | 63 virtual views::View* GetInitiallyFocusedView() OVERRIDE; |
| 66 virtual bool CanLogin() OVERRIDE; | 64 virtual bool CanLogin() OVERRIDE; |
| 67 virtual bool Login() OVERRIDE; | 65 virtual bool Login() OVERRIDE; |
| 68 virtual void Cancel() OVERRIDE; | 66 virtual void Cancel() OVERRIDE; |
| (...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 163 views::Textfield* passphrase_textfield_; | 161 views::Textfield* passphrase_textfield_; |
| 164 views::ToggleImageButton* passphrase_visible_button_; | 162 views::ToggleImageButton* passphrase_visible_button_; |
| 165 views::Label* error_label_; | 163 views::Label* error_label_; |
| 166 | 164 |
| 167 DISALLOW_COPY_AND_ASSIGN(WifiConfigView); | 165 DISALLOW_COPY_AND_ASSIGN(WifiConfigView); |
| 168 }; | 166 }; |
| 169 | 167 |
| 170 } // namespace chromeos | 168 } // namespace chromeos |
| 171 | 169 |
| 172 #endif // CHROME_BROWSER_CHROMEOS_OPTIONS_WIFI_CONFIG_VIEW_H_ | 170 #endif // CHROME_BROWSER_CHROMEOS_OPTIONS_WIFI_CONFIG_VIEW_H_ |
| OLD | NEW |