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

Unified Diff: third_party/WebKit/Source/core/style/StylePendingImage.h

Issue 1386413002: Added TODOs to StyleImage::create() to take PassRefPtrWillBeRawPtr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@make_styleresolverstate_styleImage_take_a_const_reference
Patch Set: Created 5 years, 2 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: third_party/WebKit/Source/core/style/StylePendingImage.h
diff --git a/third_party/WebKit/Source/core/style/StylePendingImage.h b/third_party/WebKit/Source/core/style/StylePendingImage.h
index 458a732a8dccdd8d1fb69d2fe425158bcb5bf7b4..21902ad1a5c11d95800980ad4ce9ee44075ed77f 100644
--- a/third_party/WebKit/Source/core/style/StylePendingImage.h
+++ b/third_party/WebKit/Source/core/style/StylePendingImage.h
@@ -41,6 +41,7 @@ namespace blink {
class StylePendingImage final : public StyleImage {
public:
+ // TODO(sashab): Make this take a PassRefPtrWillBeRawPtr<const CSSValue>.
static PassRefPtrWillBeRawPtr<StylePendingImage> create(const CSSValue& value)
{
return adoptRefWillBeNoop(new StylePendingImage(value));

Powered by Google App Engine
This is Rietveld 408576698