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

Side by Side Diff: webkit/glue/inspector_client_impl.h

Issue 31010: Hook up inspector highlighting again. This time we use... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 years, 10 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | webkit/glue/inspector_client_impl.cc » ('j') | webkit/glue/webframe_impl.h » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef WEBKIT_GLUE_INSPECTOR_CLIENT_IMPL_H__ 5 #ifndef WEBKIT_GLUE_INSPECTOR_CLIENT_IMPL_H__
6 #define WEBKIT_GLUE_INSPECTOR_CLIENT_IMPL_H__ 6 #define WEBKIT_GLUE_INSPECTOR_CLIENT_IMPL_H__
7 7
8 #include "InspectorClient.h" 8 #include "InspectorClient.h"
9 #include "base/ref_counted.h" 9 #include "base/ref_counted.h"
10 10
(...skipping 29 matching lines...) Expand all
40 virtual void storeSetting( 40 virtual void storeSetting(
41 const WebCore::String& key, const WebCore::InspectorController::Setting&); 41 const WebCore::String& key, const WebCore::InspectorController::Setting&);
42 virtual void removeSetting(const WebCore::String& key); 42 virtual void removeSetting(const WebCore::String& key);
43 43
44 private: 44 private:
45 ~WebInspectorClient(); 45 ~WebInspectorClient();
46 46
47 // The WebViewImpl of the page being inspected; gets passed to the constructor 47 // The WebViewImpl of the page being inspected; gets passed to the constructor
48 scoped_refptr<WebViewImpl> inspected_web_view_; 48 scoped_refptr<WebViewImpl> inspected_web_view_;
49 49
50 // The node selected in the web inspector. Used for highlighting it on the pag e.
dglazkov 2009/02/26 18:17:00 80 col.
51 WebCore::Node* inspected_node_;
52
50 // The WebView of the Inspector popup window 53 // The WebView of the Inspector popup window
51 WebViewImpl* inspector_web_view_; 54 WebViewImpl* inspector_web_view_;
52 }; 55 };
53 56
54 #endif // WEBKIT_GLUE_INSPECTOR_CLIENT_IMPL_H__ 57 #endif // WEBKIT_GLUE_INSPECTOR_CLIENT_IMPL_H__
55 58
OLDNEW
« no previous file with comments | « no previous file | webkit/glue/inspector_client_impl.cc » ('j') | webkit/glue/webframe_impl.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698