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

Unified Diff: chrome/browser/chromeos/network_settings/onc_translator.h

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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/chromeos/network_settings/onc_translator.h
diff --git a/chrome/browser/chromeos/network_settings/onc_translator.h b/chrome/browser/chromeos/network_settings/onc_translator.h
deleted file mode 100644
index 900851f3f0c7a48980df1d6533a176d441364201..0000000000000000000000000000000000000000
--- a/chrome/browser/chromeos/network_settings/onc_translator.h
+++ /dev/null
@@ -1,45 +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.
-
-#ifndef CHROME_BROWSER_CHROMEOS_NETWORK_SETTINGS_ONC_TRANSLATOR_H_
-#define CHROME_BROWSER_CHROMEOS_NETWORK_SETTINGS_ONC_TRANSLATOR_H_
-
-#include "base/memory/scoped_ptr.h"
-
-namespace base {
-class DictionaryValue;
-}
-
-namespace chromeos {
-namespace onc {
-
-struct OncValueSignature;
-
-// Translates a hierarchical ONC dictionary |onc_object| to a flat Shill
-// dictionary. The |signature| declares the type of |onc_object| and must point
-// to one of the signature objects in "onc_signature.h". The resulting Shill
-// dictionary is returned.
-//
-// This function is used to translate network settings from ONC to Shill's
-// format before sending them to Shill.
-scoped_ptr<base::DictionaryValue> TranslateONCObjectToShill(
- const OncValueSignature* signature,
- const base::DictionaryValue& onc_object);
-
-// Translates a |shill_dictionary| to an ONC object according to the given
-// |onc_signature|. |onc_signature| must point to a signature object in
-// "onc_signature.h". The resulting ONC object is returned.
-//
-// This function is used to translate network settings coming from Shill to ONC
-// before sending them to the UI. The result doesn't have to be valid ONC, but
-// only a subset of it and includes only the values that are actually required
-// by the UI.
-scoped_ptr<base::DictionaryValue> TranslateShillServiceToONCPart(
- const base::DictionaryValue& shill_dictionary,
- const OncValueSignature* onc_signature);
-
-} // namespace onc
-} // namespace chromeos
-
-#endif // CHROME_BROWSER_CHROMEOS_NETWORK_SETTINGS_ONC_TRANSLATOR_H_

Powered by Google App Engine
This is Rietveld 408576698