| 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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 #include "chromeos/network/network_state_handler.h" | 43 #include "chromeos/network/network_state_handler.h" |
| 44 #include "chromeos/network/network_util.h" | 44 #include "chromeos/network/network_util.h" |
| 45 #include "chromeos/network/onc/onc_signature.h" | 45 #include "chromeos/network/onc/onc_signature.h" |
| 46 #include "chromeos/network/onc/onc_translation_tables.h" | 46 #include "chromeos/network/onc/onc_translation_tables.h" |
| 47 #include "chromeos/network/onc/onc_translator.h" | 47 #include "chromeos/network/onc/onc_translator.h" |
| 48 #include "chromeos/network/onc/onc_utils.h" | 48 #include "chromeos/network/onc/onc_utils.h" |
| 49 #include "components/onc/onc_constants.h" | 49 #include "components/onc/onc_constants.h" |
| 50 #include "content/public/browser/user_metrics.h" | 50 #include "content/public/browser/user_metrics.h" |
| 51 #include "content/public/browser/web_contents.h" | 51 #include "content/public/browser/web_contents.h" |
| 52 #include "content/public/browser/web_ui.h" | 52 #include "content/public/browser/web_ui.h" |
| 53 #include "grit/ash_resources.h" | |
| 54 #include "grit/ui_chromeos_resources.h" | 53 #include "grit/ui_chromeos_resources.h" |
| 55 #include "third_party/cros_system_api/dbus/service_constants.h" | 54 #include "third_party/cros_system_api/dbus/service_constants.h" |
| 56 #include "ui/base/resource/resource_bundle.h" | 55 #include "ui/base/resource/resource_bundle.h" |
| 57 #include "ui/base/webui/web_ui_util.h" | 56 #include "ui/base/webui/web_ui_util.h" |
| 58 #include "ui/chromeos/network/network_icon.h" | 57 #include "ui/chromeos/network/network_icon.h" |
| 59 #include "ui/gfx/image/image_skia.h" | 58 #include "ui/gfx/image/image_skia.h" |
| 60 | 59 |
| 61 namespace chromeos { | 60 namespace chromeos { |
| 62 namespace options { | 61 namespace options { |
| 63 | 62 |
| (...skipping 1588 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1652 dictionary->SetBoolean( | 1651 dictionary->SetBoolean( |
| 1653 kTagWimaxAvailable, | 1652 kTagWimaxAvailable, |
| 1654 handler->IsTechnologyAvailable(NetworkTypePattern::Wimax())); | 1653 handler->IsTechnologyAvailable(NetworkTypePattern::Wimax())); |
| 1655 dictionary->SetBoolean( | 1654 dictionary->SetBoolean( |
| 1656 kTagWimaxEnabled, | 1655 kTagWimaxEnabled, |
| 1657 handler->IsTechnologyEnabled(NetworkTypePattern::Wimax())); | 1656 handler->IsTechnologyEnabled(NetworkTypePattern::Wimax())); |
| 1658 } | 1657 } |
| 1659 | 1658 |
| 1660 } // namespace options | 1659 } // namespace options |
| 1661 } // namespace chromeos | 1660 } // namespace chromeos |
| OLD | NEW |