Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 Loading... | |
| 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 |
| OLD | NEW |