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 "chromeos/network/onc/onc_translator.h" | 5 #include "chromeos/network/onc/onc_translator.h" |
6 | 6 |
7 #include <memory> | 7 #include <memory> |
8 #include <string> | 8 #include <string> |
9 #include <utility> | 9 #include <utility> |
10 | 10 |
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
110 std::make_pair("shill_wifi_non_utf8_ssid.json", | 110 std::make_pair("shill_wifi_non_utf8_ssid.json", |
111 "translation_of_shill_wifi_non_utf8_ssid.onc"), | 111 "translation_of_shill_wifi_non_utf8_ssid.onc"), |
112 std::make_pair("shill_wifi_wep_8021x_clientcert.json", | 112 std::make_pair("shill_wifi_wep_8021x_clientcert.json", |
113 "translation_of_shill_wifi_wep_8021x_clientcert.onc"), | 113 "translation_of_shill_wifi_wep_8021x_clientcert.onc"), |
114 std::make_pair("shill_output_l2tpipsec.json", | 114 std::make_pair("shill_output_l2tpipsec.json", |
115 "translation_of_shill_l2tpipsec.onc"), | 115 "translation_of_shill_l2tpipsec.onc"), |
116 std::make_pair("shill_output_openvpn.json", | 116 std::make_pair("shill_output_openvpn.json", |
117 "translation_of_shill_openvpn.onc"), | 117 "translation_of_shill_openvpn.onc"), |
118 std::make_pair("shill_output_openvpn_with_errors.json", | 118 std::make_pair("shill_output_openvpn_with_errors.json", |
119 "translation_of_shill_openvpn_with_errors.onc"), | 119 "translation_of_shill_openvpn_with_errors.onc"), |
| 120 std::make_pair("shill_tether.json", "tether.onc"), |
120 std::make_pair("shill_wifi_with_state.json", | 121 std::make_pair("shill_wifi_with_state.json", |
121 "translation_of_shill_wifi_with_state.onc"), | 122 "translation_of_shill_wifi_with_state.onc"), |
122 std::make_pair("shill_wifi_proxy.json", | 123 std::make_pair("shill_wifi_proxy.json", |
123 "translation_of_shill_wifi_proxy.onc"), | 124 "translation_of_shill_wifi_proxy.onc"), |
124 std::make_pair("shill_wifi_proxy_pac.json", | 125 std::make_pair("shill_wifi_proxy_pac.json", |
125 "translation_of_shill_wifi_proxy_pac.onc"), | 126 "translation_of_shill_wifi_proxy_pac.onc"), |
126 std::make_pair("shill_cellular_with_state.json", | 127 std::make_pair("shill_cellular_with_state.json", |
127 "translation_of_shill_cellular_with_state.onc"), | 128 "translation_of_shill_cellular_with_state.onc"), |
128 std::make_pair("shill_wimax_with_state.json", | 129 std::make_pair("shill_wimax_with_state.json", |
129 "translation_of_shill_wimax_with_state.onc"), | 130 "translation_of_shill_wimax_with_state.onc"), |
130 std::make_pair("shill_output_third_party_vpn.json", | 131 std::make_pair("shill_output_third_party_vpn.json", |
131 "third_party_vpn.onc"))); | 132 "third_party_vpn.onc"))); |
132 | 133 |
133 } // namespace onc | 134 } // namespace onc |
134 } // namespace chromeos | 135 } // namespace chromeos |
OLD | NEW |