Index: chrome/browser/chromeos/network_settings/onc_translation_tables.cc |
diff --git a/chrome/browser/chromeos/network_settings/onc_translation_tables.cc b/chrome/browser/chromeos/network_settings/onc_translation_tables.cc |
deleted file mode 100644 |
index 59633c439e25e2d8778590489fe2f3d219cac8ba..0000000000000000000000000000000000000000 |
--- a/chrome/browser/chromeos/network_settings/onc_translation_tables.cc |
+++ /dev/null |
@@ -1,30 +0,0 @@ |
-// Copyright (c) 2012 The Chromium Authors. All rights reserved. |
-// Use of this source code is governed by a BSD-style license that can be |
-// found in the LICENSE file. |
- |
-#include "chrome/browser/chromeos/network_settings/onc_translation_tables.h" |
- |
-#include <cstddef> |
- |
-#include "chrome/browser/chromeos/cros/onc_constants.h" |
-#include "third_party/cros_system_api/dbus/service_constants.h" |
- |
-namespace chromeos { |
-namespace onc { |
- |
-const StringTranslationEntry kNetworkTypeTable[] = { |
- { kEthernet, flimflam::kTypeEthernet }, |
- { kWiFi, flimflam::kTypeWifi }, |
- { kCellular, flimflam::kTypeCellular }, |
- { kVPN, flimflam::kTypeVPN }, |
- { NULL } |
-}; |
- |
-const StringTranslationEntry kVPNTypeTable[] = { |
- { vpn::kTypeL2TP_IPsec, flimflam::kProviderL2tpIpsec }, |
- { vpn::kOpenVPN, flimflam::kProviderOpenVpn }, |
- { NULL } |
-}; |
- |
-} // namespace onc |
-} // namespace chromeos |