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

Unified Diff: tools/json_schema_compiler/util.h

Issue 260893013: JSON Schema Compiler: Following r267534, properly convert arrays of enums (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: better Created 6 years, 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tools/json_schema_compiler/cc_generator.py ('k') | tools/json_schema_compiler/util_cc_helper.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/json_schema_compiler/util.h
diff --git a/tools/json_schema_compiler/util.h b/tools/json_schema_compiler/util.h
index 5cc4008867f7eaea9e8f875676652c7e67d64111..ec1af110537a56d8b1887b899b5312fdfd8a108b 100644
--- a/tools/json_schema_compiler/util.h
+++ b/tools/json_schema_compiler/util.h
@@ -191,6 +191,25 @@ scoped_ptr<base::Value> CreateValueFromOptionalEnumArray(
return scoped_ptr<base::Value>();
}
+template <class T>
+scoped_ptr<base::Value> CreateValueFromEnumArrayWithoutNamespace(
+ const std::vector<T>& from) {
+ base::ListValue* list = new base::ListValue();
+ for (typename std::vector<T>::const_iterator it = from.begin();
+ it != from.end(); ++it) {
+ list->AppendString(ToString(*it));
+ }
+ return scoped_ptr<base::Value>(list);
+}
+
+template <class T>
+scoped_ptr<base::Value> CreateValueFromOptionalEnumArrayWithoutNamespace(
+ const scoped_ptr<std::vector<T> >& from) {
+ if (from.get())
+ return CreateValueFromEnumArrayWithoutNamespace(*from);
+ return scoped_ptr<base::Value>();
+}
+
std::string ValueTypeToString(base::Value::Type type);
} // namespace util
« no previous file with comments | « tools/json_schema_compiler/cc_generator.py ('k') | tools/json_schema_compiler/util_cc_helper.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698