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

Unified Diff: Source/core/style/StyleImage.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: Created 5 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
Index: Source/core/style/StyleImage.h
diff --git a/Source/core/style/StyleImage.h b/Source/core/style/StyleImage.h
index c032a602539f4ee1608b0c14161833e7403b150e..3257d004a73f725d5ef25f95a5b6722f033a2e58 100644
--- a/Source/core/style/StyleImage.h
+++ b/Source/core/style/StyleImage.h
@@ -49,7 +49,7 @@ public:
return data() == other.data();
}
- virtual PassRefPtrWillBeRawPtr<CSSValue> cssValue() const = 0;
+ virtual CSSValue cssValue() const = 0;
virtual bool canRender(const LayoutObject&, float /*multiplier*/) const { return true; }
virtual bool isLoaded() const { return true; }

Powered by Google App Engine
This is Rietveld 408576698