Index: tools/json_schema_compiler/any.cc |
diff --git a/tools/json_schema_compiler/any.cc b/tools/json_schema_compiler/any.cc |
index b429567446ff6b19cceff775ab786c066a50824f..cd4e5c35c42058eb151c62879c98b074dd89d8e6 100644 |
--- a/tools/json_schema_compiler/any.cc |
+++ b/tools/json_schema_compiler/any.cc |
@@ -12,6 +12,10 @@ namespace any { |
Any::Any() {} |
+Any::Any(scoped_ptr<base::Value> from_value) |
+ : value_(from_value.Pass()) { |
+} |
+ |
Any::~Any() {} |
void Any::Init(const base::Value& from_value) { |