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

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

Issue 1308953009: Move Image ownership out of CSSValue (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 3 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/CSSCursorImageValue.cpp ('k') | Source/core/css/CSSImageGeneratorValue.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/CSSGradientValue.h
diff --git a/Source/core/css/CSSGradientValue.h b/Source/core/css/CSSGradientValue.h
index 92da1dda4dfa2e666117a017a7e4628ad6eabf8f..a8f46940c02e77fcaa57b996db69c513b3a667ed 100644
--- a/Source/core/css/CSSGradientValue.h
+++ b/Source/core/css/CSSGradientValue.h
@@ -28,6 +28,7 @@
#include "core/css/CSSImageGeneratorValue.h"
#include "core/css/CSSPrimitiveValue.h"
+#include "core/style/StyleImage.h"
#include "wtf/RefPtr.h"
#include "wtf/Vector.h"
@@ -103,10 +104,10 @@ public:
bool isFixedSize() const { return false; }
IntSize fixedSize(const LayoutObject*) const { return IntSize(); }
- bool isPending() const { return false; }
+ bool isPending(CSSStyleImageMap&) const { return false; }
bool knownToBeOpaque(const LayoutObject*) const;
- void loadSubimages(Document*) { }
+ void loadSubimages(Document*, CSSStyleImageMap&) { }
DECLARE_TRACE_AFTER_DISPATCH();
« no previous file with comments | « Source/core/css/CSSCursorImageValue.cpp ('k') | Source/core/css/CSSImageGeneratorValue.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698