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..d2b20e24e0cadfb96eba0879ce744b877155710b 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 { |
@@ -18,10 +21,13 @@ class DOMHandler { |
DOMHandler(); |
virtual ~DOMHandler(); |
+ void SetRenderViewHost(RenderViewHostImpl* host); |
+ |
Response SetFileInputFiles(NodeId node_id, |
const std::vector<std::string>& files); |
private: |
+ RenderViewHostImpl* host_; |
DISALLOW_COPY_AND_ASSIGN(DOMHandler); |
}; |