| Index: content/browser/devtools/protocol/io_handler.h
|
| diff --git a/content/browser/devtools/protocol/io_handler.h b/content/browser/devtools/protocol/io_handler.h
|
| index d6ae25baaa410572f540af46b86e94bd88d154e2..95388441428c04e33f8aa9fdda52f51eeef90ab9 100644
|
| --- a/content/browser/devtools/protocol/io_handler.h
|
| +++ b/content/browser/devtools/protocol/io_handler.h
|
| @@ -28,13 +28,16 @@ class IOHandler {
|
| void SetClient(scoped_ptr<Client> client);
|
|
|
| // Protocol methods.
|
| - Response Read(DevToolsCommandId command_id, const std::string& handle,
|
| - const int* offset, const int* max_size);
|
| + Response Read(DevToolsCommandId command_id,
|
| + const std::string& handle,
|
| + const int* offset,
|
| + const int* max_size);
|
| Response Close(const std::string& handle);
|
|
|
| private:
|
| void ReadComplete(DevToolsCommandId command_id,
|
| - const scoped_refptr<base::RefCountedString>& data, int status);
|
| + const scoped_refptr<base::RefCountedString>& data,
|
| + int status);
|
|
|
| scoped_ptr<Client> client_;
|
| DevToolsIOContext* io_context_;
|
|
|