Home | History | Annotate | Download | only in inspector

Lines Matching defs:InspectorCSSAgent

26 #include "core/inspector/InspectorCSSAgent.h"
143 UpdateRegionLayoutTask(InspectorCSSAgent*);
150 InspectorCSSAgent* m_cssAgent;
155 UpdateRegionLayoutTask::UpdateRegionLayoutTask(InspectorCSSAgent* cssAgent)
204 ChangeRegionOversetTask(InspectorCSSAgent*);
211 InspectorCSSAgent* m_cssAgent;
216 ChangeRegionOversetTask::ChangeRegionOversetTask(InspectorCSSAgent* cssAgent)
250 class InspectorCSSAgent::StyleSheetAction : public InspectorHistory::Action {
263 class InspectorCSSAgent::SetStyleSheetTextAction : public InspectorCSSAgent::StyleSheetAction {
267 : InspectorCSSAgent::StyleSheetAction("SetStyleSheetText", styleSheet)
315 class InspectorCSSAgent::SetStyleTextAction : public InspectorCSSAgent::StyleSheetAction {
319 : InspectorCSSAgent::StyleSheetAction("SetPropertyText", styleSheet)
365 class InspectorCSSAgent::SetPropertyTextAction : public InspectorCSSAgent::StyleSheetAction {
369 : InspectorCSSAgent::StyleSheetAction("SetPropertyText", styleSheet)
425 class InspectorCSSAgent::TogglePropertyAction : public InspectorCSSAgent::StyleSheetAction {
429 : InspectorCSSAgent::StyleSheetAction("ToggleProperty", styleSheet)
457 class InspectorCSSAgent::SetRuleSelectorAction : public InspectorCSSAgent::StyleSheetAction {
461 : InspectorCSSAgent::StyleSheetAction("SetRuleSelector", styleSheet)
491 class InspectorCSSAgent::AddRuleAction : public InspectorCSSAgent::StyleSheetAction {
495 : InspectorCSSAgent::StyleSheetAction("AddRule", styleSheet)
528 CSSStyleRule* InspectorCSSAgent::asCSSStyleRule(CSSRule* rule)
635 bool InspectorCSSAgent::cssErrorFilter(const CSSParserString& content, int propertyId, int errorType)
719 InspectorCSSAgent::InspectorCSSAgent(InstrumentingAgents* instrumentingAgents, InspectorCompositeState* state, InspectorDOMAgent* domAgent, InspectorPageAgent* pageAgent)
720 : InspectorBaseAgent<InspectorCSSAgent>("CSS", instrumentingAgents, state)
731 InspectorCSSAgent::~InspectorCSSAgent()
737 void InspectorCSSAgent::setFrontend(InspectorFrontend* frontend)
743 void InspectorCSSAgent::clearFrontend()
750 void InspectorCSSAgent::discardAgent()
756 void InspectorCSSAgent::restore()
764 void InspectorCSSAgent::reset()
773 void InspectorCSSAgent::resetNonPersistentData()
783 void InspectorCSSAgent::enable(ErrorString*)
796 void InspectorCSSAgent::disable(ErrorString*)
802 void InspectorCSSAgent::didCommitLoad(Frame* frame, DocumentLoader* loader)
810 void InspectorCSSAgent::mediaQueryResultChanged()
816 void InspectorCSSAgent::didCreateNamedFlow(Document* document, NamedFlow* namedFlow)
826 void InspectorCSSAgent::willRemoveNamedFlow(Document* document, NamedFlow* namedFlow)
838 void InspectorCSSAgent::didUpdateRegionLayout(Document* document, NamedFlow* namedFlow)
849 void InspectorCSSAgent::regionLayoutUpdated(NamedFlow* namedFlow, int documentNodeId)
860 void InspectorCSSAgent::didChangeRegionOverset(Document* document, NamedFlow* namedFlow)
871 void InspectorCSSAgent::regionOversetChanged(NamedFlow* namedFlow, int documentNodeId)
882 void InspectorCSSAgent::activeStyleSheetsUpdated(Document* document, const StyleSheetVector& newSheets)
929 void InspectorCSSAgent::frameDetachedFromParent(Frame* frame)
938 bool InspectorCSSAgent::forcePseudoState(Element* element, CSSSelector::PseudoType pseudoType)
966 void InspectorCSSAgent::getMatchedStylesForNode(ErrorString* errorString, int nodeId, const bool* includePseudo, const bool* includeInherited, RefPtr<TypeBuilder::Array<TypeBuilder::CSS::RuleMatch> >& matchedCSSRules, RefPtr<TypeBuilder::Array<TypeBuilder::CSS::PseudoIdMatches> >& pseudoIdMatches, RefPtr<TypeBuilder::Array<TypeBuilder::CSS::InheritedStyleEntry> >& inheritedEntries)
1016 void InspectorCSSAgent::getInlineStylesForNode(ErrorString* errorString, int nodeId, RefPtr<TypeBuilder::CSS::CSSStyle>& inlineStyle, RefPtr<TypeBuilder::CSS::CSSStyle>& attributesStyle)
1031 void InspectorCSSAgent::getComputedStyleForNode(ErrorString* errorString, int nodeId, RefPtr<TypeBuilder::Array<TypeBuilder::CSS::CSSComputedStyleProperty> >& style)
1042 void InspectorCSSAgent::getAllStyleSheets(ErrorString*, RefPtr<TypeBuilder::Array<TypeBuilder::CSS::CSSStyleSheetHeader> >& styleInfos)
1051 void InspectorCSSAgent::getStyleSheet(ErrorString* errorString, const String& styleSheetId, RefPtr<TypeBuilder::CSS::CSSStyleSheetBody>& styleSheetObject)
1070 void InspectorCSSAgent::getStyleSheetText(ErrorString* errorString, const String& styleSheetId, String* result)
1079 void InspectorCSSAgent::setStyleSheetText(ErrorString* errorString, const String& styleSheetId, const String& text)
1090 void InspectorCSSAgent::setStyleText(ErrorString* errorString, const RefPtr<JSONObject>& fullStyleId, const String& text, RefPtr<TypeBuilder::CSS::CSSStyle>& result)
1106 void InspectorCSSAgent::setPropertyText(ErrorString* errorString, const RefPtr<JSONObject>& fullStyleId, int propertyIndex, const String& text, bool overwrite, RefPtr<TypeBuilder::CSS::CSSStyle>& result)
1122 void InspectorCSSAgent::toggleProperty(ErrorString* errorString, const RefPtr<JSONObject>& fullStyleId, int propertyIndex, bool disable, RefPtr<TypeBuilder::CSS::CSSStyle>& result)
1138 void InspectorCSSAgent::setRuleSelector(ErrorString* errorString, const RefPtr<JSONObject>& fullRuleId, const String& selector, RefPtr<TypeBuilder::CSS::CSSRule>& result)
1157 void InspectorCSSAgent::addRule(ErrorString* errorString, const int contextNodeId, const String& selector, RefPtr<TypeBuilder::CSS::CSSRule>& result)
1183 void InspectorCSSAgent::getSupportedCSSProperties(ErrorString*, RefPtr<TypeBuilder::Array<TypeBuilder::CSS::CSSPropertyInfo> >& cssProperties)
1207 void InspectorCSSAgent::forcePseudoState(ErrorString* errorString, int nodeId, const RefPtr<JSONArray>& forcedPseudoClasses)
1227 void InspectorCSSAgent::getNamedFlowCollection(ErrorString* errorString, int documentNodeId, RefPtr<TypeBuilder::Array<TypeBuilder::CSS::NamedFlow> >& result)
1244 PassRefPtr<TypeBuilder::CSS::CSSMedia> InspectorCSSAgent::buildMediaObject(const MediaList* media, MediaListSource mediaListSource, const String& sourceURL, CSSStyleSheet* parentStyleSheet)
1285 PassRefPtr<TypeBuilder::Array<TypeBuilder::CSS::CSSMedia> > InspectorCSSAgent::buildMediaListChain(CSSRule* rule)
1350 InspectorStyleSheetForInlineStyle* InspectorCSSAgent::asInspectorStyleSheet(Element* element)
1367 Element* InspectorCSSAgent::elementForId(ErrorString* errorString, int nodeId)
1381 int InspectorCSSAgent::documentNodeWithRequestedFlowsId(Document* document)
1390 void InspectorCSSAgent::collectAllStyleSheets(Vector<InspectorStyleSheet*>& result)
1403 void InspectorCSSAgent::collectStyleSheets(CSSStyleSheet* styleSheet, Vector<InspectorStyleSheet*>& result)
1417 InspectorStyleSheet* InspectorCSSAgent::bindStyleSheet(CSSStyleSheet* styleSheet)
1432 String InspectorCSSAgent::unbindStyleSheet(InspectorStyleSheet* inspectorStyleSheet)
1441 InspectorStyleSheet* InspectorCSSAgent::viaInspectorStyleSheet(Document* document, bool createIfAbsent)
1482 InspectorStyleSheet* InspectorCSSAgent::assertStyleSheetForId(ErrorString* errorString, const String& styleSheetId)
1492 TypeBuilder::CSS::StyleSheetOrigin::Enum InspectorCSSAgent::detectOrigin(CSSStyleSheet* pageStyleSheet, Document* ownerDocument)
1510 PassRefPtr<TypeBuilder::CSS::CSSRule> InspectorCSSAgent::buildObjectForRule(CSSStyleRule* rule, StyleResolver* styleResolver)
1526 PassRefPtr<TypeBuilder::Array<TypeBuilder::CSS::CSSRule> > InspectorCSSAgent::buildArrayForRuleList(CSSRuleList* ruleList, StyleResolver* styleResolver)
1546 PassRefPtr<TypeBuilder::Array<TypeBuilder::CSS::RuleMatch> > InspectorCSSAgent::buildArrayForMatchedRuleList(CSSRuleList* ruleList, StyleResolver* styleResolver, Element* element)
1575 PassRefPtr<TypeBuilder::CSS::CSSStyle> InspectorCSSAgent::buildObjectForAttributesStyle(Element* element)
1592 PassRefPtr<TypeBuilder::Array<TypeBuilder::CSS::Region> > InspectorCSSAgent::buildArrayForRegions(ErrorString* errorString, PassRefPtr<NodeList> regionList, int documentNodeId)
1627 PassRefPtr<TypeBuilder::CSS::NamedFlow> InspectorCSSAgent::buildObjectForNamedFlow(ErrorString* errorString, NamedFlow* webkitNamedFlow, int documentNodeId)
1647 void InspectorCSSAgent::didRemoveDocument(Document* document)
1653 void InspectorCSSAgent::didRemoveDOMNode(Node* node)
1670 void InspectorCSSAgent::didModifyDOMAttr(Element* element)
1682 void InspectorCSSAgent::styleSheetChanged(InspectorStyleSheet* styleSheet)
1688 void InspectorCSSAgent::willReparseStyleSheet()
1694 void InspectorCSSAgent::didReparseStyleSheet()
1700 void InspectorCSSAgent::resetPseudoStates()