Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(322)

Side by Side Diff: chromeos/network/onc/onc_translator_unittest.cc

Issue 482243002: Use Managed properties for Preferred and Provider. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix test Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 "base/memory/scoped_ptr.h" 7 #include "base/memory/scoped_ptr.h"
8 #include "base/values.h" 8 #include "base/values.h"
9 #include "chromeos/network/onc/onc_signature.h" 9 #include "chromeos/network/onc/onc_signature.h"
10 #include "chromeos/network/onc/onc_test_utils.h" 10 #include "chromeos/network/onc/onc_test_utils.h"
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
91 std::make_pair("shill_ethernet.json", 91 std::make_pair("shill_ethernet.json",
92 "translation_of_shill_ethernet.onc"), 92 "translation_of_shill_ethernet.onc"),
93 std::make_pair("shill_ethernet_with_eap.json", 93 std::make_pair("shill_ethernet_with_eap.json",
94 "translation_of_shill_ethernet_with_eap.onc"), 94 "translation_of_shill_ethernet_with_eap.onc"),
95 std::make_pair("shill_ethernet_with_ipconfig.json", 95 std::make_pair("shill_ethernet_with_ipconfig.json",
96 "translation_of_shill_ethernet_with_ipconfig.onc"), 96 "translation_of_shill_ethernet_with_ipconfig.onc"),
97 std::make_pair("shill_wifi_clientcert.json", 97 std::make_pair("shill_wifi_clientcert.json",
98 "translation_of_shill_wifi_clientcert.onc"), 98 "translation_of_shill_wifi_clientcert.onc"),
99 std::make_pair("shill_wifi_wpa1.json", 99 std::make_pair("shill_wifi_wpa1.json",
100 "translation_of_shill_wifi_wpa1.onc"), 100 "translation_of_shill_wifi_wpa1.onc"),
101 std::make_pair("shill_l2tpipsec.json", 101 std::make_pair("shill_output_l2tpipsec.json",
102 "translation_of_shill_l2tpipsec.onc"), 102 "translation_of_shill_l2tpipsec.onc"),
103 std::make_pair("shill_openvpn.json", 103 std::make_pair("shill_output_openvpn.json",
104 "translation_of_shill_openvpn.onc"), 104 "translation_of_shill_openvpn.onc"),
105 std::make_pair("shill_openvpn_with_errors.json", 105 std::make_pair("shill_output_openvpn_with_errors.json",
106 "translation_of_shill_openvpn_with_errors.onc"), 106 "translation_of_shill_openvpn_with_errors.onc"),
107 std::make_pair("shill_wifi_with_state.json", 107 std::make_pair("shill_wifi_with_state.json",
108 "translation_of_shill_wifi_with_state.onc"), 108 "translation_of_shill_wifi_with_state.onc"),
109 std::make_pair("shill_cellular_with_state.json", 109 std::make_pair("shill_cellular_with_state.json",
110 "translation_of_shill_cellular_with_state.onc"))); 110 "translation_of_shill_cellular_with_state.onc")));
111 111
112 } // namespace onc 112 } // namespace onc
113 } // namespace chromeos 113 } // namespace chromeos
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698