diff options
author | pfeldman@chromium.org <pfeldman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-04-10 11:20:05 +0000 |
---|---|---|
committer | pfeldman@chromium.org <pfeldman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-04-10 11:20:05 +0000 |
commit | fe7bad5497021cf0f3c20f2daf4c3ddb24ffda73 (patch) | |
tree | 076b57dedf753dfbdf4746a9cb4957449200c6c8 /webkit/glue/devtools/dom_agent_impl.h | |
parent | 327587e7c2b02a106e6282649f078f29062a610a (diff) | |
download | chromium_src-fe7bad5497021cf0f3c20f2daf4c3ddb24ffda73.zip chromium_src-fe7bad5497021cf0f3c20f2daf4c3ddb24ffda73.tar.gz chromium_src-fe7bad5497021cf0f3c20f2daf4c3ddb24ffda73.tar.bz2 |
DevTools: Migrate CSS functionality to javascript.
Review URL: http://codereview.chromium.org/62188
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@13500 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/glue/devtools/dom_agent_impl.h')
-rw-r--r-- | webkit/glue/devtools/dom_agent_impl.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/webkit/glue/devtools/dom_agent_impl.h b/webkit/glue/devtools/dom_agent_impl.h index 2751ecb..3d88e3e 100644 --- a/webkit/glue/devtools/dom_agent_impl.h +++ b/webkit/glue/devtools/dom_agent_impl.h @@ -16,7 +16,6 @@ #include "webkit/glue/devtools/dom_agent.h" namespace WebCore { -class CSSRuleList; class Document; class Element; class Event; @@ -51,7 +50,6 @@ class DomAgentImpl : public DomAgent { int element_id, const WebCore::String& value); void PerformSearch(int call_id, const String& query); - void GetNodeStyles(int call_id, int id, bool author_only); void DiscardBindings(); // Initializes dom agent with the given document. @@ -121,13 +119,6 @@ class DomAgentImpl : public DomAgent { WebCore::Element* element, int depth); - // Serializes CSS rule list into the list value. - static ListValue* BuildValueForCSSRules(WebCore::CSSRuleList& matched); - - // Serializes attribute styles into the dictionary value. - static DictionaryValue* BuildValueForAttributeStyles( - const WebCore::NamedNodeMap& attributes); - // Serializes CSSStyleDeclaration into a list of properties // where aeach property represented as an array as an // [name, important, implicit, shorthand, value] |