| 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> |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 #include "chromeos/network/network_connection_handler.h" | 42 #include "chromeos/network/network_connection_handler.h" |
| 43 #include "chromeos/network/network_device_handler.h" | 43 #include "chromeos/network/network_device_handler.h" |
| 44 #include "chromeos/network/network_event_log.h" | 44 #include "chromeos/network/network_event_log.h" |
| 45 #include "chromeos/network/network_ip_config.h" | 45 #include "chromeos/network/network_ip_config.h" |
| 46 #include "chromeos/network/network_profile.h" | 46 #include "chromeos/network/network_profile.h" |
| 47 #include "chromeos/network/network_profile_handler.h" | 47 #include "chromeos/network/network_profile_handler.h" |
| 48 #include "chromeos/network/network_state.h" | 48 #include "chromeos/network/network_state.h" |
| 49 #include "chromeos/network/network_state_handler.h" | 49 #include "chromeos/network/network_state_handler.h" |
| 50 #include "chromeos/network/network_ui_data.h" | 50 #include "chromeos/network/network_ui_data.h" |
| 51 #include "chromeos/network/network_util.h" | 51 #include "chromeos/network/network_util.h" |
| 52 #include "chromeos/network/shill_property_util.h" | |
| 53 #include "components/onc/onc_constants.h" | 52 #include "components/onc/onc_constants.h" |
| 54 #include "content/public/browser/notification_service.h" | 53 #include "content/public/browser/notification_service.h" |
| 55 #include "content/public/browser/user_metrics.h" | 54 #include "content/public/browser/user_metrics.h" |
| 56 #include "content/public/browser/web_contents.h" | 55 #include "content/public/browser/web_contents.h" |
| 57 #include "content/public/browser/web_ui.h" | 56 #include "content/public/browser/web_ui.h" |
| 58 #include "grit/ash_resources.h" | 57 #include "grit/ash_resources.h" |
| 59 #include "grit/locale_settings.h" | 58 #include "grit/locale_settings.h" |
| 60 #include "grit/theme_resources.h" | 59 #include "grit/theme_resources.h" |
| 61 #include "third_party/cros_system_api/dbus/service_constants.h" | 60 #include "third_party/cros_system_api/dbus/service_constants.h" |
| 62 #include "ui/base/l10n/l10n_util.h" | 61 #include "ui/base/l10n/l10n_util.h" |
| (...skipping 1761 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1824 dictionary->SetBoolean( | 1823 dictionary->SetBoolean( |
| 1825 kTagWimaxAvailable, | 1824 kTagWimaxAvailable, |
| 1826 handler->IsTechnologyAvailable(NetworkTypePattern::Wimax())); | 1825 handler->IsTechnologyAvailable(NetworkTypePattern::Wimax())); |
| 1827 dictionary->SetBoolean( | 1826 dictionary->SetBoolean( |
| 1828 kTagWimaxEnabled, | 1827 kTagWimaxEnabled, |
| 1829 handler->IsTechnologyEnabled(NetworkTypePattern::Wimax())); | 1828 handler->IsTechnologyEnabled(NetworkTypePattern::Wimax())); |
| 1830 } | 1829 } |
| 1831 | 1830 |
| 1832 } // namespace options | 1831 } // namespace options |
| 1833 } // namespace chromeos | 1832 } // namespace chromeos |
| OLD | NEW |