Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(47)

Unified Diff: content/browser/devtools/protocol/dom_handler.h

Issue 635533004: [DevTools] Move DOM domain overrides to DOMHandler (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix for Windows again Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | content/browser/devtools/protocol/dom_handler.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
};
« no previous file with comments | « no previous file | content/browser/devtools/protocol/dom_handler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698