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

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

Issue 348056: Highlight node with mouse over it while selecting element to inspect (Closed)
Patch Set: Created 11 years, 1 month 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
OLDNEW
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 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_WEBDEVTOOLSFRONTEND_IMPL_H_ 5 #ifndef WEBKIT_GLUE_WEBDEVTOOLSFRONTEND_IMPL_H_
6 #define WEBKIT_GLUE_WEBDEVTOOLSFRONTEND_IMPL_H_ 6 #define WEBKIT_GLUE_WEBDEVTOOLSFRONTEND_IMPL_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include <wtf/HashMap.h> 10 #include <wtf/HashMap.h>
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
67 static v8::Handle<v8::Value> JsAddSourceToFrame(const v8::Arguments& args); 67 static v8::Handle<v8::Value> JsAddSourceToFrame(const v8::Arguments& args);
68 static v8::Handle<v8::Value> JsAddResourceSourceToFrame( 68 static v8::Handle<v8::Value> JsAddResourceSourceToFrame(
69 const v8::Arguments& args); 69 const v8::Arguments& args);
70 static v8::Handle<v8::Value> JsLoaded(const v8::Arguments& args); 70 static v8::Handle<v8::Value> JsLoaded(const v8::Arguments& args);
71 static v8::Handle<v8::Value> JsGetPlatform(const v8::Arguments& args); 71 static v8::Handle<v8::Value> JsGetPlatform(const v8::Arguments& args);
72 72
73 static v8::Handle<v8::Value> JsActivateWindow(const v8::Arguments& args); 73 static v8::Handle<v8::Value> JsActivateWindow(const v8::Arguments& args);
74 static v8::Handle<v8::Value> JsCloseWindow(const v8::Arguments& args); 74 static v8::Handle<v8::Value> JsCloseWindow(const v8::Arguments& args);
75 static v8::Handle<v8::Value> JsDockWindow(const v8::Arguments& args); 75 static v8::Handle<v8::Value> JsDockWindow(const v8::Arguments& args);
76 static v8::Handle<v8::Value> JsUndockWindow(const v8::Arguments& args); 76 static v8::Handle<v8::Value> JsUndockWindow(const v8::Arguments& args);
77 static v8::Handle<v8::Value> JsToggleInspectElementMode(
78 const v8::Arguments& args);
79 static v8::Handle<v8::Value> JsGetApplicationLocale( 77 static v8::Handle<v8::Value> JsGetApplicationLocale(
80 const v8::Arguments& args); 78 const v8::Arguments& args);
81 static v8::Handle<v8::Value> JsHiddenPanels( 79 static v8::Handle<v8::Value> JsHiddenPanels(
82 const v8::Arguments& args); 80 const v8::Arguments& args);
83 static v8::Handle<v8::Value> JsDebuggerCommand( 81 static v8::Handle<v8::Value> JsDebuggerCommand(
84 const v8::Arguments& args); 82 const v8::Arguments& args);
85 83
86 WebKit::WebViewImpl* web_view_impl_; 84 WebKit::WebViewImpl* web_view_impl_;
87 WebKit::WebDevToolsFrontendClient* client_; 85 WebKit::WebDevToolsFrontendClient* client_;
88 String application_locale_; 86 String application_locale_;
89 OwnPtr<BoundObject> debugger_command_executor_obj_; 87 OwnPtr<BoundObject> debugger_command_executor_obj_;
90 OwnPtr<JsDebuggerAgentBoundObj> debugger_agent_obj_; 88 OwnPtr<JsDebuggerAgentBoundObj> debugger_agent_obj_;
91 OwnPtr<JsToolsAgentBoundObj> tools_agent_obj_; 89 OwnPtr<JsToolsAgentBoundObj> tools_agent_obj_;
92 bool loaded_; 90 bool loaded_;
93 Vector<Vector<String> > pending_incoming_messages_; 91 Vector<Vector<String> > pending_incoming_messages_;
94 OwnPtr<BoundObject> dev_tools_host_; 92 OwnPtr<BoundObject> dev_tools_host_;
95 OwnPtr<ToolsAgentNativeDelegateImpl> tools_agent_native_delegate_impl_; 93 OwnPtr<ToolsAgentNativeDelegateImpl> tools_agent_native_delegate_impl_;
96 }; 94 };
97 95
98 #endif // WEBKIT_GLUE_WEBDEVTOOLSFRONTEND_IMPL_H_ 96 #endif // WEBKIT_GLUE_WEBDEVTOOLSFRONTEND_IMPL_H_
OLDNEW
« no previous file with comments | « webkit/glue/devtools/js/inspector_controller_impl.js ('k') | webkit/glue/webdevtoolsfrontend_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698