| 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 #include "chrome/browser/ui/webui/options/chromeos/internet_options_handler.h" | 5 #include "chrome/browser/ui/webui/options/chromeos/internet_options_handler.h" |
| 6 | 6 |
| 7 #include <ctype.h> | 7 #include <ctype.h> |
| 8 | 8 |
| 9 #include <map> | 9 #include <map> |
| 10 #include <string> | 10 #include <string> |
| 11 #include <vector> | 11 #include <vector> |
| 12 | 12 |
| 13 #include "ash/system/chromeos/network/network_connect.h" | 13 #include "ash/system/chromeos/network/network_connect.h" |
| 14 #include "ash/system/chromeos/network/network_icon.h" | 14 #include "ash/system/chromeos/network/network_icon.h" |
| 15 #include "base/basictypes.h" | 15 #include "base/basictypes.h" |
| 16 #include "base/bind.h" | 16 #include "base/bind.h" |
| 17 #include "base/bind_helpers.h" | 17 #include "base/bind_helpers.h" |
| 18 #include "base/command_line.h" | 18 #include "base/command_line.h" |
| 19 #include "base/strings/string_number_conversions.h" | 19 #include "base/strings/string_number_conversions.h" |
| 20 #include "base/strings/utf_string_conversions.h" | 20 #include "base/strings/utf_string_conversions.h" |
| 21 #include "base/values.h" | 21 #include "base/values.h" |
| 22 #include "chrome/browser/browser_process.h" | 22 #include "chrome/browser/browser_process.h" |
| 23 #include "chrome/browser/chrome_notification_types.h" | 23 #include "chrome/browser/chrome_notification_types.h" |
| 24 #include "chrome/browser/chromeos/login/user.h" | 24 #include "chrome/browser/chromeos/login/users/user.h" |
| 25 #include "chrome/browser/chromeos/login/user_manager.h" | 25 #include "chrome/browser/chromeos/login/users/user_manager.h" |
| 26 #include "chrome/browser/chromeos/mobile_config.h" | 26 #include "chrome/browser/chromeos/mobile_config.h" |
| 27 #include "chrome/browser/chromeos/net/onc_utils.h" | 27 #include "chrome/browser/chromeos/net/onc_utils.h" |
| 28 #include "chrome/browser/chromeos/options/network_config_view.h" | 28 #include "chrome/browser/chromeos/options/network_config_view.h" |
| 29 #include "chrome/browser/chromeos/options/network_property_ui_data.h" | 29 #include "chrome/browser/chromeos/options/network_property_ui_data.h" |
| 30 #include "chrome/browser/chromeos/settings/cros_settings.h" | 30 #include "chrome/browser/chromeos/settings/cros_settings.h" |
| 31 #include "chrome/browser/chromeos/sim_dialog_delegate.h" | 31 #include "chrome/browser/chromeos/sim_dialog_delegate.h" |
| 32 #include "chrome/browser/chromeos/ui/choose_mobile_network_dialog.h" | 32 #include "chrome/browser/chromeos/ui/choose_mobile_network_dialog.h" |
| 33 #include "chrome/browser/chromeos/ui/mobile_config_ui.h" | 33 #include "chrome/browser/chromeos/ui/mobile_config_ui.h" |
| 34 #include "chrome/browser/chromeos/ui_proxy_config_service.h" | 34 #include "chrome/browser/chromeos/ui_proxy_config_service.h" |
| 35 #include "chrome/browser/ui/webui/options/chromeos/core_chromeos_options_handler
.h" | 35 #include "chrome/browser/ui/webui/options/chromeos/core_chromeos_options_handler
.h" |
| (...skipping 1783 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1819 dictionary->SetBoolean( | 1819 dictionary->SetBoolean( |
| 1820 kTagWimaxAvailable, | 1820 kTagWimaxAvailable, |
| 1821 handler->IsTechnologyAvailable(NetworkTypePattern::Wimax())); | 1821 handler->IsTechnologyAvailable(NetworkTypePattern::Wimax())); |
| 1822 dictionary->SetBoolean( | 1822 dictionary->SetBoolean( |
| 1823 kTagWimaxEnabled, | 1823 kTagWimaxEnabled, |
| 1824 handler->IsTechnologyEnabled(NetworkTypePattern::Wimax())); | 1824 handler->IsTechnologyEnabled(NetworkTypePattern::Wimax())); |
| 1825 } | 1825 } |
| 1826 | 1826 |
| 1827 } // namespace options | 1827 } // namespace options |
| 1828 } // namespace chromeos | 1828 } // namespace chromeos |
| OLD | NEW |