Chromium Code Reviews| Index: content/browser/devtools/protocol/dom_handler.h |
| diff --git a/content/browser/devtools/protocol/dom_handler.h b/content/browser/devtools/protocol/dom_handler.h |
| index 97184269f37598aaff1cb3ceb3d9b66d97c981fc..3f2327c5371591e24e2fe6369e4d0bcb20560ff2 100644 |
| --- a/content/browser/devtools/protocol/dom_handler.h |
| +++ b/content/browser/devtools/protocol/dom_handler.h |
| @@ -8,6 +8,9 @@ |
| #include "content/browser/devtools/protocol/devtools_protocol_handler_impl.h" |
| namespace content { |
| + |
| +class RenderViewHostImpl; |
| + |
| namespace devtools { |
| namespace dom { |
| @@ -21,7 +24,10 @@ class DOMHandler { |
| Response SetFileInputFiles(NodeId node_id, |
| const std::vector<std::string>& files); |
| + void SetRenderViewHost(RenderViewHostImpl* host); |
|
dgozman
2014/10/07 15:27:26
I'd place non-protocol methods at the top for cons
vkuzkokov
2014/10/08 11:12:25
Done.
|
| + |
| private: |
| + RenderViewHostImpl* host_; |
| DISALLOW_COPY_AND_ASSIGN(DOMHandler); |
| }; |