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

Side by Side Diff: chrome/browser/chromeos/network_settings/onc_translation_tables.cc

Issue 11299236: This moves the ONC parsing code into chromeos/network/onc (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix unit tests Created 8 years 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
(Empty)
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
3 // found in the LICENSE file.
4
5 #include "chrome/browser/chromeos/network_settings/onc_translation_tables.h"
6
7 #include <cstddef>
8
9 #include "chrome/browser/chromeos/cros/onc_constants.h"
10 #include "third_party/cros_system_api/dbus/service_constants.h"
11
12 namespace chromeos {
13 namespace onc {
14
15 const StringTranslationEntry kNetworkTypeTable[] = {
16 { kEthernet, flimflam::kTypeEthernet },
17 { kWiFi, flimflam::kTypeWifi },
18 { kCellular, flimflam::kTypeCellular },
19 { kVPN, flimflam::kTypeVPN },
20 { NULL }
21 };
22
23 const StringTranslationEntry kVPNTypeTable[] = {
24 { vpn::kTypeL2TP_IPsec, flimflam::kProviderL2tpIpsec },
25 { vpn::kOpenVPN, flimflam::kProviderOpenVpn },
26 { NULL }
27 };
28
29 } // namespace onc
30 } // namespace chromeos
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698