HomeSort by relevance Sort by last modified time
    Searched defs:StyleSheetContents (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/css/
StyleSheetContents.cpp 22 #include "core/css/StyleSheetContents.h"
38 unsigned StyleSheetContents::estimatedSizeInBytes() const
49 if (StyleSheetContents* sheet = m_importRules[i]->styleSheet())
55 StyleSheetContents::StyleSheetContents(StyleRuleImport* ownerRule, const String& originalURL, const CSSParserContext& context)
69 StyleSheetContents::StyleSheetContents(const StyleSheetContents& o)
70 : RefCounted<StyleSheetContents>()
95 StyleSheetContents::~StyleSheetContents(
    [all...]
StyleSheetContents.h 44 class StyleSheetContents : public RefCounted<StyleSheetContents> {
46 static PassRefPtr<StyleSheetContents> create(const CSSParserContext& context = CSSParserContext(CSSStrictMode))
48 return adoptRef(new StyleSheetContents(0, String(), context));
50 static PassRefPtr<StyleSheetContents> create(const String& originalURL, const CSSParserContext& context)
52 return adoptRef(new StyleSheetContents(0, originalURL, context));
54 static PassRefPtr<StyleSheetContents> create(StyleRuleImport* ownerRule, const String& originalURL, const CSSParserContext& context)
56 return adoptRef(new StyleSheetContents(ownerRule, originalURL, context));
59 ~StyleSheetContents();
76 StyleSheetContents* rootStyleSheet() const
    [all...]

Completed in 34 milliseconds