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

Unified Diff: Source/core/css/CSSImageGeneratorValue.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/CSSGradientValue.h ('k') | Source/core/css/CSSImageGeneratorValue.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/CSSImageGeneratorValue.h
diff --git a/Source/core/css/CSSImageGeneratorValue.h b/Source/core/css/CSSImageGeneratorValue.h
index f664d137220f8e8fb9c009829c1d2d1203dae02d..3d3bbe4d4a22a984e4752439eed75a613af257c2 100644
--- a/Source/core/css/CSSImageGeneratorValue.h
+++ b/Source/core/css/CSSImageGeneratorValue.h
@@ -28,13 +28,16 @@
#include "core/CoreExport.h"
#include "core/css/CSSValue.h"
+#include "core/style/StyleImage.h"
#include "platform/geometry/IntSizeHash.h"
#include "wtf/HashCountedSet.h"
#include "wtf/RefPtr.h"
namespace blink {
+class ComputedStyle;
class Document;
+class ElementStyleResources;
class Image;
class LayoutObject;
@@ -63,10 +66,10 @@ public:
bool isFixedSize() const;
IntSize fixedSize(const LayoutObject*);
- bool isPending() const;
+ bool isPending(CSSStyleImageMap&) const;
bool knownToBeOpaque(const LayoutObject*) const;
- void loadSubimages(Document*);
+ void loadSubimages(Document*, CSSStyleImageMap&);
DEFINE_INLINE_TRACE_AFTER_DISPATCH() { CSSValue::traceAfterDispatch(visitor); }
« no previous file with comments | « Source/core/css/CSSGradientValue.h ('k') | Source/core/css/CSSImageGeneratorValue.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698