| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 |
| 11 #include "base/basictypes.h" | 11 #include "base/basictypes.h" |
| 12 #include "base/compiler_specific.h" | 12 #include "base/compiler_specific.h" |
| 13 #include "base/memory/scoped_ptr.h" | 13 #include "base/memory/scoped_ptr.h" |
| 14 #include "base/string16.h" | 14 #include "base/string16.h" |
| 15 #include "chrome/browser/chromeos/cros/cert_library.h" | 15 #include "chrome/browser/chromeos/cros/cert_library.h" |
| 16 #include "chrome/browser/chromeos/options/network_config_view.h" | 16 #include "chrome/browser/chromeos/options/network_config_view.h" |
| 17 #include "ui/base/models/combobox_model.h" | 17 #include "ui/base/models/combobox_model.h" |
| 18 #include "ui/views/controls/combobox/combobox_listener.h" |
| 18 #include "views/controls/button/button.h" | 19 #include "views/controls/button/button.h" |
| 19 #include "views/controls/combobox/combobox_listener.h" | |
| 20 #include "views/controls/textfield/textfield_controller.h" | 20 #include "views/controls/textfield/textfield_controller.h" |
| 21 #include "views/view.h" | 21 #include "views/view.h" |
| 22 | 22 |
| 23 namespace views { | 23 namespace views { |
| 24 class Checkbox; | 24 class Checkbox; |
| 25 class ToggleImageButton; | 25 class ToggleImageButton; |
| 26 class Label; | 26 class Label; |
| 27 } | 27 } |
| 28 | 28 |
| 29 namespace chromeos { | 29 namespace chromeos { |
| (...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 129 views::Textfield* passphrase_textfield_; | 129 views::Textfield* passphrase_textfield_; |
| 130 views::ToggleImageButton* passphrase_visible_button_; | 130 views::ToggleImageButton* passphrase_visible_button_; |
| 131 views::Label* error_label_; | 131 views::Label* error_label_; |
| 132 | 132 |
| 133 DISALLOW_COPY_AND_ASSIGN(WifiConfigView); | 133 DISALLOW_COPY_AND_ASSIGN(WifiConfigView); |
| 134 }; | 134 }; |
| 135 | 135 |
| 136 } // namespace chromeos | 136 } // namespace chromeos |
| 137 | 137 |
| 138 #endif // CHROME_BROWSER_CHROMEOS_OPTIONS_WIFI_CONFIG_VIEW_H_ | 138 #endif // CHROME_BROWSER_CHROMEOS_OPTIONS_WIFI_CONFIG_VIEW_H_ |
| OLD | NEW |