Index: base/values.h |
diff --git a/base/values.h b/base/values.h |
index e3d60891b33ecaa91055e2b774cce15fb1e97f99..0371b8e3db5a3f77a1e0269560fb67486528c1f7 100644 |
--- a/base/values.h |
+++ b/base/values.h |
@@ -65,6 +65,9 @@ class BASE_EXPORT Value { |
static std::unique_ptr<Value> CreateNullValue(); |
+ // Returns the name for a given |type|. |
+ static const char* GetTypeName(Type type); |
+ |
// Returns the type of the value stored by the current Value object. |
// Each type will be implemented by only one subclass of Value, so it's |
// safe to use the Type to determine whether you can cast from |