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

Unified Diff: chromeos/network/onc/onc_utils.h

Issue 11664005: Extending the translation from ONC to Shill. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Initial patch. 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: chromeos/network/onc/onc_utils.h
diff --git a/chromeos/network/onc/onc_utils.h b/chromeos/network/onc/onc_utils.h
index 13263a826ae442efaa4470b3f31f212b904b4820..060cb6723b107205d84e7f55a7397c22cd0b0e5c 100644
--- a/chromeos/network/onc/onc_utils.h
+++ b/chromeos/network/onc/onc_utils.h
@@ -7,9 +7,11 @@
#include <string>
+#include "base/basictypes.h"
#include "base/memory/scoped_ptr.h"
#include "chromeos/chromeos_export.h"
#include "chromeos/network/onc/onc_constants.h"
+#include "chromeos/network/onc/onc_signature.h"
namespace base {
class DictionaryValue;
@@ -38,7 +40,21 @@ CHROMEOS_EXPORT scoped_ptr<base::DictionaryValue> Decrypt(
// For logging only: strings not user facing.
CHROMEOS_EXPORT std::string GetSourceAsString(ONCSource source);
-} // chromeos
+class CHROMEOS_EXPORT StringSubstitution {
+ public:
+ StringSubstitution() {}
+ virtual bool GetSubstitute(std::string placeholder,
+ std::string* substitute) = 0;
+ private:
+ DISALLOW_COPY_AND_ASSIGN(StringSubstitution);
+};
+
+CHROMEOS_EXPORT void ExpandStringsInOncObject(
+ const OncValueSignature& signature,
+ StringSubstitution* substitution,
+ base::DictionaryValue* onc_object);
+
} // onc
+} // chromeos
#endif // CHROMEOS_NETWORK_ONC_ONC_UTILS_H_

Powered by Google App Engine
This is Rietveld 408576698