| OLD | NEW |
| 1 // Copyright (c) 2006-2008 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_CHROMEOS_OPTIONS_CELLULAR_CONFIG_VIEW_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_OPTIONS_CELLULAR_CONFIG_VIEW_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_OPTIONS_CELLULAR_CONFIG_VIEW_H_ | 6 #define CHROME_BROWSER_CHROMEOS_OPTIONS_CELLULAR_CONFIG_VIEW_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <string> | |
| 10 | |
| 11 #include "chrome/browser/chromeos/cros/network_library.h" | 9 #include "chrome/browser/chromeos/cros/network_library.h" |
| 12 #include "views/controls/button/checkbox.h" | 10 #include "views/controls/button/checkbox.h" |
| 13 #include "views/view.h" | 11 #include "views/view.h" |
| 14 | 12 |
| 15 namespace chromeos { | 13 namespace chromeos { |
| 16 | 14 |
| 17 class NetworkConfigView; | 15 class NetworkConfigView; |
| 18 | 16 |
| 19 // A dialog box for showing a password textfield. | 17 // A dialog box for showing a password textfield. |
| 20 class CellularConfigView : public views::View { | 18 class CellularConfigView : public views::View { |
| (...skipping 16 matching lines...) Expand all Loading... |
| 37 CellularNetwork cellular_; | 35 CellularNetwork cellular_; |
| 38 | 36 |
| 39 views::Checkbox* autoconnect_checkbox_; | 37 views::Checkbox* autoconnect_checkbox_; |
| 40 | 38 |
| 41 DISALLOW_COPY_AND_ASSIGN(CellularConfigView); | 39 DISALLOW_COPY_AND_ASSIGN(CellularConfigView); |
| 42 }; | 40 }; |
| 43 | 41 |
| 44 } // namespace chromeos | 42 } // namespace chromeos |
| 45 | 43 |
| 46 #endif // CHROME_BROWSER_CHROMEOS_OPTIONS_CELLULAR_CONFIG_VIEW_H_ | 44 #endif // CHROME_BROWSER_CHROMEOS_OPTIONS_CELLULAR_CONFIG_VIEW_H_ |
| OLD | NEW |