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

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

Issue 1164573002: CSSValue Immediates: Change CSSValue to an object instead of a pointer (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase Created 5 years, 5 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/FontFace.cpp ('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 f222434cb19384b821d216d201d77e7b34ca886a..fbbc83d470359872dd021017e669f56958baa2fc 100644
--- a/Source/core/css/PropertySetCSSStyleDeclaration.h
+++ b/Source/core/css/PropertySetCSSStyleDeclaration.h
@@ -58,11 +58,11 @@ private:
virtual String removeProperty(const String& propertyName, ExceptionState&) override final;
virtual String cssText() const override final;
virtual void setCSSText(const String&, ExceptionState&) override final;
- virtual PassRefPtrWillBeRawPtr<CSSValue> getPropertyCSSValueInternal(CSSPropertyID) override final;
+ virtual NullableCSSValue getPropertyCSSValueInternal(CSSPropertyID) override final;
virtual String getPropertyValueInternal(CSSPropertyID) override final;
virtual void setPropertyInternal(CSSPropertyID, const String& value, bool important, ExceptionState&) override final;
- virtual bool cssPropertyMatches(CSSPropertyID, const CSSValue*) const override final;
+ virtual bool cssPropertyMatches(CSSPropertyID, const CSSValue) const override final;
protected:
enum MutationType { NoChanges, PropertyChanged };
« no previous file with comments | « Source/core/css/FontFace.cpp ('k') | Source/core/css/PropertySetCSSStyleDeclaration.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698