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

Unified Diff: webkit/glue/devtools/js/inspector_controller_impl.js

Issue 60047: DevTools: Add support for r/o CSS inspection. Original review CL by serya : h... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 9 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 | « webkit/glue/devtools/js/dom_agent.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/glue/devtools/js/inspector_controller_impl.js
===================================================================
--- webkit/glue/devtools/js/inspector_controller_impl.js (revision 13008)
+++ webkit/glue/devtools/js/inspector_controller_impl.js (working copy)
@@ -12,24 +12,6 @@
devtools.InspectorControllerImpl = function() {
devtools.InspectorController.call(this);
this.frame_element_id_ = 1;
-
- this.window_ = {
- get document() {
- return devtools.tools.getDomAgent().getDocument();
- },
- get Node() {
- return devtools.DomNode;
- },
- get Element() {
- return devtools.DomNode;
- },
- /**
- * See usages in ScopeChainSidebarPane.js where it's called as
- * constructor.
- */
- Object : function() {
- }
- };
};
goog.inherits(devtools.InspectorControllerImpl,
devtools.InspectorController);
@@ -91,7 +73,7 @@
* {@inheritDoc}.
*/
devtools.InspectorControllerImpl.prototype.inspectedWindow = function() {
- return this.window_;
+ return devtools.tools.getDomAgent().getWindow();
};
« no previous file with comments | « webkit/glue/devtools/js/dom_agent.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698