diff options
author | pfeldman@chromium.org <pfeldman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-03-12 13:03:51 +0000 |
---|---|---|
committer | pfeldman@chromium.org <pfeldman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-03-12 13:03:51 +0000 |
commit | 097e38421957bcdf84a79fbed193570fbb2e647e (patch) | |
tree | 088062f435d940d67b06a1b7a35a5b0850cb9243 /webkit/webkit.gyp | |
parent | 31d58b18c3ae0bc157eab12371f5777f3340cabc (diff) | |
download | chromium_src-097e38421957bcdf84a79fbed193570fbb2e647e.zip chromium_src-097e38421957bcdf84a79fbed193570fbb2e647e.tar.gz chromium_src-097e38421957bcdf84a79fbed193570fbb2e647e.tar.bz2 |
Initial WebDevToolsAgent implementation contains two agent objects: Dom agent
and Net agent.
Dom agent provides API for querying for DOM nodes and receiving notifications
on
Dom updates. It has some logic in and this logic is covered with the unit
tests.
Net agent pushes an initial set of request/response-related events to the
client. It is to be filled with more data later on. It currently caches loaders
for all the requests which is Ok for the case when this agent is turned ON (at
least for now).
Note that this code is not yet wired to the dev tools agent (this is by design).
The plan is to start enrolling the dev tools agent glue that connects these
sub-agents with the IPC transport once this CL is in.
Original CL: http://codereview.chromium.org/41008/show
Review URL: http://codereview.chromium.org/43128
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11531 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/webkit.gyp')
-rw-r--r-- | webkit/webkit.gyp | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/webkit/webkit.gyp b/webkit/webkit.gyp index 4bf64c3..31c0cfd 100644 --- a/webkit/webkit.gyp +++ b/webkit/webkit.gyp @@ -4189,6 +4189,15 @@ # This list contains all .h, .cc, and .mm files in glue except for # those in the test subdirectory and those with unittest in in their # names. + 'glue/devtools/devtools_rpc.cc', + 'glue/devtools/devtools_rpc.h', + 'glue/devtools/dom_agent.h', + 'glue/devtools/dom_agent_impl.cc', + 'glue/devtools/dom_agent_impl.h', + 'glue/devtools/net_agent.h', + 'glue/devtools/net_agent_impl.cc', + 'glue/devtools/net_agent_impl.h', + 'glue/devtools/tools_agent.h', 'glue/plugins/mozilla_extensions.cc', 'glue/plugins/mozilla_extensions.h', 'glue/plugins/nphostapi.h', @@ -4316,6 +4325,14 @@ 'glue/webdatasource.h', 'glue/webdatasource_impl.cc', 'glue/webdatasource_impl.h', + 'glue/webdevtoolsagent.h', + 'glue/webdevtoolsagent_delegate.h', + 'glue/webdevtoolsagent_impl.cc', + 'glue/webdevtoolsagent_impl.h', + 'glue/webdevtoolsclient.h', + 'glue/webdevtoolsclient_delegate.h', + 'glue/webdevtoolsclient_impl.cc', + 'glue/webdevtoolsclient_impl.h', 'glue/webdocumentloader_impl.cc', 'glue/webdocumentloader_impl.h', 'glue/webdropdata.cc', |