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 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
46 // pointer to a WifiNetwork in NetworkLibrary. | 46 // pointer to a WifiNetwork in NetworkLibrary. |
47 WifiConfigView(NetworkConfigView* parent, WifiNetwork* wifi); | 47 WifiConfigView(NetworkConfigView* parent, WifiNetwork* wifi); |
48 // Wifi login dialog for "Joining other network..." | 48 // Wifi login dialog for "Joining other network..." |
49 WifiConfigView(NetworkConfigView* parent, bool show_8021x); | 49 WifiConfigView(NetworkConfigView* parent, bool show_8021x); |
50 virtual ~WifiConfigView(); | 50 virtual ~WifiConfigView(); |
51 | 51 |
52 // views::TextfieldController: | 52 // views::TextfieldController: |
53 virtual void ContentsChanged(views::Textfield* sender, | 53 virtual void ContentsChanged(views::Textfield* sender, |
54 const string16& new_contents) OVERRIDE; | 54 const string16& new_contents) OVERRIDE; |
55 virtual bool HandleKeyEvent(views::Textfield* sender, | 55 virtual bool HandleKeyEvent(views::Textfield* sender, |
56 const views::KeyEvent& key_event) OVERRIDE; | 56 const ui::KeyEvent& key_event) OVERRIDE; |
57 | 57 |
58 // views::ButtonListener: | 58 // views::ButtonListener: |
59 virtual void ButtonPressed(views::Button* sender, | 59 virtual void ButtonPressed(views::Button* sender, |
60 const views::Event& event) OVERRIDE; | 60 const views::Event& event) OVERRIDE; |
61 | 61 |
62 // views::ComboboxListener: | 62 // views::ComboboxListener: |
63 virtual void OnSelectedIndexChanged(views::Combobox* combobox) OVERRIDE; | 63 virtual void OnSelectedIndexChanged(views::Combobox* combobox) OVERRIDE; |
64 | 64 |
65 // CertLibrary::Observer: | 65 // CertLibrary::Observer: |
66 virtual void OnCertificatesLoaded(bool initial_load) OVERRIDE; | 66 virtual void OnCertificatesLoaded(bool initial_load) OVERRIDE; |
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
173 views::Textfield* passphrase_textfield_; | 173 views::Textfield* passphrase_textfield_; |
174 views::ToggleImageButton* passphrase_visible_button_; | 174 views::ToggleImageButton* passphrase_visible_button_; |
175 views::Label* error_label_; | 175 views::Label* error_label_; |
176 | 176 |
177 DISALLOW_COPY_AND_ASSIGN(WifiConfigView); | 177 DISALLOW_COPY_AND_ASSIGN(WifiConfigView); |
178 }; | 178 }; |
179 | 179 |
180 } // namespace chromeos | 180 } // namespace chromeos |
181 | 181 |
182 #endif // CHROME_BROWSER_CHROMEOS_OPTIONS_WIFI_CONFIG_VIEW_H_ | 182 #endif // CHROME_BROWSER_CHROMEOS_OPTIONS_WIFI_CONFIG_VIEW_H_ |
OLD | NEW |