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

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

Issue 717933002: Clean up after getPropertyCSSValue (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: rebase / fix debug compile? Created 6 years, 1 month 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/Counter.idl ('k') | Source/core/css/PropertySetCSSStyleDeclaration.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/PropertySetCSSStyleDeclaration.h
diff --git a/Source/core/css/PropertySetCSSStyleDeclaration.h b/Source/core/css/PropertySetCSSStyleDeclaration.h
index ee0c5c412d028996bcb185093002dbffe3e1b273..e29ea1a49651890eca705dd1dc7f22af4190a980 100644
--- a/Source/core/css/PropertySetCSSStyleDeclaration.h
+++ b/Source/core/css/PropertySetCSSStyleDeclaration.h
@@ -50,7 +50,6 @@ private:
virtual CSSRule* parentRule() const override { return 0; }
virtual unsigned length() const override final;
virtual String item(unsigned index) const override final;
- virtual PassRefPtrWillBeRawPtr<CSSValue> getPropertyCSSValue(const String& propertyName) override final;
virtual String getPropertyValue(const String& propertyName) override final;
virtual String getPropertyPriority(const String& propertyName) override final;
virtual String getPropertyShorthand(const String& propertyName) override final;
@@ -66,15 +65,11 @@ private:
virtual bool cssPropertyMatches(CSSPropertyID, const CSSValue*) const override final;
virtual PassRefPtrWillBeRawPtr<MutableStylePropertySet> copyProperties() const override final;
- CSSValue* cloneAndCacheForCSSOM(CSSValue*);
-
protected:
enum MutationType { NoChanges, PropertyChanged };
virtual void willMutate() { }
virtual void didMutate(MutationType) { }
virtual MutableStylePropertySet& propertySet() const = 0;
-
- OwnPtrWillBeMember<WillBeHeapHashMap<RawPtrWillBeMember<CSSValue>, RefPtrWillBeMember<CSSValue> > > m_cssomCSSValueClones;
};
class PropertySetCSSStyleDeclaration : public AbstractPropertySetCSSStyleDeclaration {
« no previous file with comments | « Source/core/css/Counter.idl ('k') | Source/core/css/PropertySetCSSStyleDeclaration.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698