OLD | NEW |
---|---|
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 Loading... | |
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<Value*>(from->DeepCopy())); | 70 out->Append(static_cast<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 "int"; | |
not at google - send to devlin
2013/06/19 17:02:08
"integer"
| |
81 case Value::TYPE_DOUBLE: | |
82 return "double"; | |
not at google - send to devlin
2013/06/19 17:02:08
"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 default: | |
92 ; | |
not at google - send to devlin
2013/06/19 17:02:08
no default case
| |
93 } | |
94 NOTREACHED(); | |
95 return ""; | |
96 } | |
97 | |
73 } // namespace api_util | 98 } // namespace api_util |
74 } // namespace extensions | 99 } // namespace extensions |
OLD | NEW |