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

Side by Side Diff: tools/json_schema_compiler/util.cc

Issue 22228002: Add optional schema compiler error messages (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Synced up to latest master. Created 7 years, 4 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 unified diff | Download patch
« no previous file with comments | « tools/json_schema_compiler/util.h ('k') | tools/json_schema_compiler/util_cc_helper.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "tools/json_schema_compiler/util.h" 5 #include "tools/json_schema_compiler/util.h"
6 6
7 #include "base/values.h" 7 #include "base/values.h"
8 8
9 namespace json_schema_compiler { 9 namespace json_schema_compiler {
10 namespace util { 10 namespace util {
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 void AddItemToList(const linked_ptr<base::Value>& from, 63 void AddItemToList(const linked_ptr<base::Value>& from,
64 base::ListValue* out) { 64 base::ListValue* out) {
65 out->Append(from->DeepCopy()); 65 out->Append(from->DeepCopy());
66 } 66 }
67 67
68 void AddItemToList(const linked_ptr<base::DictionaryValue>& from, 68 void AddItemToList(const linked_ptr<base::DictionaryValue>& from,
69 base::ListValue* out) { 69 base::ListValue* out) {
70 out->Append(static_cast<base::Value*>(from->DeepCopy())); 70 out->Append(static_cast<base::Value*>(from->DeepCopy()));
71 } 71 }
72 72
73 std::string ValueTypeToString(Value::Type type) {
74 switch(type) {
75 case Value::TYPE_NULL:
76 return "null";
77 case Value::TYPE_BOOLEAN:
78 return "boolean";
79 case Value::TYPE_INTEGER:
80 return "integer";
81 case Value::TYPE_DOUBLE:
82 return "number";
83 case Value::TYPE_STRING:
84 return "string";
85 case Value::TYPE_BINARY:
86 return "binary";
87 case Value::TYPE_DICTIONARY:
88 return "dictionary";
89 case Value::TYPE_LIST:
90 return "list";
91 }
92 NOTREACHED();
93 return "";
94 }
95
73 } // namespace api_util 96 } // namespace api_util
74 } // namespace extensions 97 } // namespace extensions
OLDNEW
« no previous file with comments | « tools/json_schema_compiler/util.h ('k') | tools/json_schema_compiler/util_cc_helper.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698