diff options
author | pfeldman@chromium.org <pfeldman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-03-23 10:58:51 +0000 |
---|---|---|
committer | pfeldman@chromium.org <pfeldman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-03-23 10:58:51 +0000 |
commit | 0b093c9568e7d15c050dd770002850704df2417b (patch) | |
tree | c128112072d53ae1bf7d639bd59a1fe07a211dc9 /webkit/glue/devtools/dom_agent.h | |
parent | 7aa27fdf4e135daef7f49a37a61e506c165ce214 (diff) | |
download | chromium_src-0b093c9568e7d15c050dd770002850704df2417b.zip chromium_src-0b093c9568e7d15c050dd770002850704df2417b.tar.gz chromium_src-0b093c9568e7d15c050dd770002850704df2417b.tar.bz2 |
DevToolsClient frontend improvements:
1. Move callbacks processing to the frontend
2. Dispatch calls directly to Javascript
3. Create CppBoundObject per agent flavor and wire it to IPC
4. Introduce Remote*Agent abstraction in the frontend
Review URL: http://codereview.chromium.org/42486
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@12275 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/glue/devtools/dom_agent.h')
-rw-r--r-- | webkit/glue/devtools/dom_agent.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/webkit/glue/devtools/dom_agent.h b/webkit/glue/devtools/dom_agent.h index 491adb8..3aebf8c 100644 --- a/webkit/glue/devtools/dom_agent.h +++ b/webkit/glue/devtools/dom_agent.h @@ -36,10 +36,10 @@ DEFINE_RPC_CLASS(DomAgent, DOM_AGENT_STRUCT) #define DOM_AGENT_DELEGATE_STRUCT(METHOD0, METHOD1, METHOD2, METHOD3) \ /* Response to GetDocumentElement. */ \ - METHOD2(GetDocumentElementResult, int /* call_id */, std::string /* json */) \ + METHOD2(GetDocumentElementResult, int /* call_id */, Value /* node */) \ \ /* Response to GetChildNodes. */ \ - METHOD2(GetChildNodesResult, int /* call_id */, std::string /* json */) \ + METHOD2(GetChildNodesResult, int /* call_id */, Value /* nodes */) \ \ /* Notifies the delegate that element's attributes are updated. */ \ METHOD2(AttributesUpdated, int /* id */, Value /* attributes */) \ |