| Index: content/browser/devtools/devtools_session.h
|
| diff --git a/content/browser/devtools/devtools_session.h b/content/browser/devtools/devtools_session.h
|
| index b8962ac58f9009778ee0fa33b0d5bd3b6bbc645d..90e4e9742d9af401e44c1adbd2d74ed21507e385 100644
|
| --- a/content/browser/devtools/devtools_session.h
|
| +++ b/content/browser/devtools/devtools_session.h
|
| @@ -20,8 +20,11 @@ class DevToolsSession : public protocol::FrontendChannel {
|
|
|
| private:
|
| // protocol::FrontendChannel implementation.
|
| - void sendProtocolResponse(int call_id, const std::string& message) override;
|
| - void sendProtocolNotification(const std::string& message) override;
|
| + void sendProtocolResponse(
|
| + int call_id,
|
| + std::unique_ptr<protocol::Serializable> message) override;
|
| + void sendProtocolNotification(
|
| + std::unique_ptr<protocol::Serializable> message) override;
|
| void flushProtocolNotifications() override;
|
|
|
| DevToolsAgentHostImpl* agent_host_;
|
|
|