| Index: third_party/inspector_protocol/lib/Object_cpp.template
 | 
| diff --git a/third_party/inspector_protocol/lib/Object_cpp.template b/third_party/inspector_protocol/lib/Object_cpp.template
 | 
| index 46b0c94b2dddc3f95ceebd421620a48b85dca8c8..91723a71e29ce4555dc4077f5fdf074b210931e9 100644
 | 
| --- a/third_party/inspector_protocol/lib/Object_cpp.template
 | 
| +++ b/third_party/inspector_protocol/lib/Object_cpp.template
 | 
| @@ -8,7 +8,7 @@
 | 
|  namespace {{namespace}} {
 | 
|  {% endfor %}
 | 
|  
 | 
| -std::unique_ptr<Object> Object::parse(protocol::Value* value, ErrorSupport* errors)
 | 
| +std::unique_ptr<Object> Object::fromValue(protocol::Value* value, ErrorSupport* errors)
 | 
|  {
 | 
|      protocol::DictionaryValue* dictionary = DictionaryValue::cast(value);
 | 
|      if (!dictionary) {
 | 
| @@ -19,7 +19,7 @@ std::unique_ptr<Object> Object::parse(protocol::Value* value, ErrorSupport* erro
 | 
|      return std::unique_ptr<Object>(new Object(std::unique_ptr<DictionaryValue>(dictionary)));
 | 
|  }
 | 
|  
 | 
| -std::unique_ptr<protocol::DictionaryValue> Object::serialize() const
 | 
| +std::unique_ptr<protocol::DictionaryValue> Object::toValue() const
 | 
|  {
 | 
|      return DictionaryValue::cast(m_object->clone());
 | 
|  }
 | 
| 
 |