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

Unified Diff: webkit/glue/devtools/dom_agent.h

Issue 57007: Styles pane is made work with IPC. Still not work and will be fixed later:... (Closed) Base URL: http://src.chromium.org/svn/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 | « no previous file | webkit/glue/devtools/dom_agent_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/glue/devtools/dom_agent.h
===================================================================
--- webkit/glue/devtools/dom_agent.h (revision 13008)
+++ webkit/glue/devtools/dom_agent.h (working copy)
@@ -33,6 +33,10 @@
/* Perform search. */ \
METHOD2(PerformSearch, int /* call_id */, String /* query */) \
\
+ /* Requests that the element's style information is sent to the client. */ \
+ METHOD3(GetNodeStyles, int /* call_id */, int /* id */,\
+ bool /* author_only */) \
+ \
/* Tells dom agent that the client has lost all of the dom-related
information and is no longer interested in the notifications related to the
nodes issued earlier. */ \
@@ -48,6 +52,9 @@
/* Perform search. */ \
METHOD2(DidPerformSearch, int /* call_id */, Value /* results */) \
\
+ /* Response to GetNodeStyles. */ \
+ METHOD2(DidGetNodeStyles, int /* call_id */, Value /* styles */) \
+ \
/* Ack for the Set/RemoveAttribute, SetTextNodeValue. */ \
METHOD2(DidApplyDomChange, int /* call_id */, bool /* success */) \
\
« no previous file with comments | « no previous file | webkit/glue/devtools/dom_agent_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698