| Index: content/browser/devtools/protocol/io_handler.cc
|
| diff --git a/content/browser/devtools/protocol/io_handler.cc b/content/browser/devtools/protocol/io_handler.cc
|
| index f8228e160d662c48f6b23e35a9904a1efcede3c9..2b6a76d48e0381550de3cbd01d7e17c81da9f415 100644
|
| --- a/content/browser/devtools/protocol/io_handler.cc
|
| +++ b/content/browser/devtools/protocol/io_handler.cc
|
| @@ -19,7 +19,8 @@ namespace content {
|
| namespace protocol {
|
|
|
| IOHandler::IOHandler(DevToolsIOContext* io_context)
|
| - : io_context_(io_context)
|
| + : DevToolsDomainHandler(IO::Metainfo::domainName),
|
| + io_context_(io_context)
|
| , weak_factory_(this) {}
|
|
|
| IOHandler::~IOHandler() {}
|
| @@ -29,10 +30,6 @@ void IOHandler::Wire(UberDispatcher* dispatcher) {
|
| IO::Dispatcher::wire(dispatcher, this);
|
| }
|
|
|
| -Response IOHandler::Disable() {
|
| - return Response::OK();
|
| -}
|
| -
|
| void IOHandler::Read(
|
| const std::string& handle,
|
| Maybe<int> offset,
|
|
|