| 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_WIMAX_CONFIG_VIEW_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_OPTIONS_WIMAX_CONFIG_VIEW_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_OPTIONS_WIMAX_CONFIG_VIEW_H_ | 6 #define CHROME_BROWSER_CHROMEOS_OPTIONS_WIMAX_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" | |
| 14 #include "base/string16.h" | 13 #include "base/string16.h" |
| 15 #include "chrome/browser/chromeos/options/network_config_view.h" | 14 #include "chrome/browser/chromeos/options/network_config_view.h" |
| 16 #include "chrome/browser/chromeos/options/wifi_config_view.h" | 15 #include "chrome/browser/chromeos/options/wifi_config_view.h" |
| 17 #include "ui/views/controls/button/button.h" | 16 #include "ui/views/controls/button/button.h" |
| 18 #include "ui/views/controls/textfield/textfield_controller.h" | 17 #include "ui/views/controls/textfield/textfield_controller.h" |
| 19 #include "ui/views/view.h" | 18 #include "ui/views/view.h" |
| 20 | 19 |
| 21 namespace views { | 20 namespace views { |
| 22 class Checkbox; | 21 class Checkbox; |
| 23 class Label; | 22 class Label; |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 85 views::Textfield* passphrase_textfield_; | 84 views::Textfield* passphrase_textfield_; |
| 86 views::ToggleImageButton* passphrase_visible_button_; | 85 views::ToggleImageButton* passphrase_visible_button_; |
| 87 views::Label* error_label_; | 86 views::Label* error_label_; |
| 88 | 87 |
| 89 DISALLOW_COPY_AND_ASSIGN(WimaxConfigView); | 88 DISALLOW_COPY_AND_ASSIGN(WimaxConfigView); |
| 90 }; | 89 }; |
| 91 | 90 |
| 92 } // namespace chromeos | 91 } // namespace chromeos |
| 93 | 92 |
| 94 #endif // CHROME_BROWSER_CHROMEOS_OPTIONS_WIMAX_CONFIG_VIEW_H_ | 93 #endif // CHROME_BROWSER_CHROMEOS_OPTIONS_WIMAX_CONFIG_VIEW_H_ |
| OLD | NEW |