| Index: components/ui_devtools/devtools_client.h
 | 
| diff --git a/components/ui_devtools/devtools_client.h b/components/ui_devtools/devtools_client.h
 | 
| index 36ad20186343ab6d8ab58ed302f29a76e2a863ce..1812556154966832f9c084cc061773b1a02333a2 100644
 | 
| --- a/components/ui_devtools/devtools_client.h
 | 
| +++ b/components/ui_devtools/devtools_client.h
 | 
| @@ -40,8 +40,11 @@ class UiDevToolsClient : public protocol::FrontendChannel {
 | 
|    void DisableAllAgents();
 | 
|  
 | 
|    // protocol::FrontendChannel
 | 
| -  void sendProtocolResponse(int callId, const String& message) override;
 | 
| -  void sendProtocolNotification(const String& message) override;
 | 
| +  void sendProtocolResponse(
 | 
| +      int callId,
 | 
| +      std::unique_ptr<protocol::Serializable> message) override;
 | 
| +  void sendProtocolNotification(
 | 
| +      std::unique_ptr<protocol::Serializable> message) override;
 | 
|    void flushProtocolNotifications() override;
 | 
|  
 | 
|    std::string name_;
 | 
| 
 |