diff options
author | ojan@google.com <ojan@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-02-26 19:22:27 +0000 |
---|---|---|
committer | ojan@google.com <ojan@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-02-26 19:22:27 +0000 |
commit | 961331ed07e81a9505df718ca0210b8beee18cf4 (patch) | |
tree | b3db3359c88c8c84e7f3ab846ad64c202350968a /webkit/glue/inspector_client_impl.h | |
parent | 348646d70dcd3bfbe9c0664ef6033e528943e7d5 (diff) | |
download | chromium_src-961331ed07e81a9505df718ca0210b8beee18cf4.zip chromium_src-961331ed07e81a9505df718ca0210b8beee18cf4.tar.gz chromium_src-961331ed07e81a9505df718ca0210b8beee18cf4.tar.bz2 |
Hook up inspector highlighting again. This time we use
upstream's drawNodeHighlight methods.
BUG=5178
Review URL: http://codereview.chromium.org/31010
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@10497 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/glue/inspector_client_impl.h')
-rw-r--r-- | webkit/glue/inspector_client_impl.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/webkit/glue/inspector_client_impl.h b/webkit/glue/inspector_client_impl.h index 92b1ead..8e8e4fa 100644 --- a/webkit/glue/inspector_client_impl.h +++ b/webkit/glue/inspector_client_impl.h @@ -47,6 +47,10 @@ private: // The WebViewImpl of the page being inspected; gets passed to the constructor scoped_refptr<WebViewImpl> inspected_web_view_; + // The node selected in the web inspector. Used for highlighting it on the + // page. + WebCore::Node* inspected_node_; + // The WebView of the Inspector popup window WebViewImpl* inspector_web_view_; }; |