Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(552)

Unified Diff: Source/core/css/StyleRule.h

Issue 15923002: Move CSSOM classes to using MutableStylePropertySet over StylePropertySet. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/css/StylePropertySet.cpp ('k') | Source/core/css/StyleRule.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/StyleRule.h
diff --git a/Source/core/css/StyleRule.h b/Source/core/css/StyleRule.h
index ba4d8932f44bda9c72e8fb28b0969d331f2e9b7f..1ac9a804f49617492cdc1eb530a3e92758a169ae 100644
--- a/Source/core/css/StyleRule.h
+++ b/Source/core/css/StyleRule.h
@@ -1,7 +1,7 @@
/*
* (C) 1999-2003 Lars Knoll (knoll@kde.org)
* (C) 2002-2003 Dirk Mueller (mueller@kde.org)
- * Copyright (C) 2002, 2006, 2008, 2012 Apple Inc. All rights reserved.
+ * Copyright (C) 2002, 2006, 2008, 2012, 2013 Apple Inc. All rights reserved.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
@@ -31,6 +31,7 @@ namespace WebCore {
class CSSRule;
class CSSStyleRule;
class CSSStyleSheet;
+class MutableStylePropertySet;
class StylePropertySet;
class StyleRuleBase : public WTF::RefCountedBase {
@@ -112,7 +113,7 @@ public:
const CSSSelectorList& selectorList() const { return m_selectorList; }
const StylePropertySet* properties() const { return m_properties.get(); }
- StylePropertySet* mutableProperties();
+ MutableStylePropertySet* mutableProperties();
void parserAdoptSelectorVector(Vector<OwnPtr<CSSParserSelector> >& selectors) { m_selectorList.adoptSelectorVector(selectors); }
void wrapperAdoptSelectorList(CSSSelectorList& selectors) { m_selectorList.adopt(selectors); }
@@ -144,7 +145,7 @@ public:
~StyleRuleFontFace();
const StylePropertySet* properties() const { return m_properties.get(); }
- StylePropertySet* mutableProperties();
+ MutableStylePropertySet* mutableProperties();
void setProperties(PassRefPtr<StylePropertySet>);
@@ -167,7 +168,7 @@ public:
const CSSSelector* selector() const { return m_selectorList.first(); }
const StylePropertySet* properties() const { return m_properties.get(); }
- StylePropertySet* mutableProperties();
+ MutableStylePropertySet* mutableProperties();
void parserAdoptSelectorVector(Vector<OwnPtr<CSSParserSelector> >& selectors) { m_selectorList.adoptSelectorVector(selectors); }
void wrapperAdoptSelectorList(CSSSelectorList& selectors) { m_selectorList.adopt(selectors); }
@@ -283,7 +284,7 @@ public:
~StyleRuleViewport();
const StylePropertySet* properties() const { return m_properties.get(); }
- StylePropertySet* mutableProperties();
+ MutableStylePropertySet* mutableProperties();
void setProperties(PassRefPtr<StylePropertySet>);
@@ -326,7 +327,7 @@ public:
const String& filterName() const { return m_filterName; }
const StylePropertySet* properties() const { return m_properties.get(); }
- StylePropertySet* mutableProperties();
+ MutableStylePropertySet* mutableProperties();
void setProperties(PassRefPtr<StylePropertySet>);
« no previous file with comments | « Source/core/css/StylePropertySet.cpp ('k') | Source/core/css/StyleRule.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698