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

Unified Diff: third_party/WebKit/Source/core/css/cssom/CSSStyleImageValue.h

Issue 2469873002: [ImageResource 4] Split ImageResource into Resource and Image parts (Closed)
Patch Set: style Created 4 years 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/css/cssom/CSSStyleImageValue.h
diff --git a/third_party/WebKit/Source/core/css/cssom/CSSStyleImageValue.h b/third_party/WebKit/Source/core/css/cssom/CSSStyleImageValue.h
index 1c6278c09b673507a397c4c21e3a95b7fefe6e31..a380f4f538bc6f65c79f4db81229c378bf5ffbf7 100644
--- a/third_party/WebKit/Source/core/css/cssom/CSSStyleImageValue.h
+++ b/third_party/WebKit/Source/core/css/cssom/CSSStyleImageValue.h
@@ -10,7 +10,7 @@
#include "core/css/CSSImageValue.h"
#include "core/css/cssom/CSSResourceValue.h"
#include "core/css/cssom/CSSStyleValue.h"
-#include "core/fetch/ImageResource.h"
+#include "core/fetch/ImageResourceContent.h"
#include "core/html/canvas/CanvasImageSource.h"
#include "core/imagebitmap/ImageBitmapSource.h"
#include "core/style/StyleImage.h"
@@ -57,7 +57,7 @@ class CORE_EXPORT CSSStyleImageValue : public CSSResourceValue,
virtual LayoutSize imageLayoutSize() const {
DCHECK(!isCachePending());
return m_imageValue->cachedImage()->cachedImage()->imageSize(
- DoNotRespectImageOrientation, 1, ImageResource::IntrinsicSize);
+ DoNotRespectImageOrientation, 1, ImageResourceContent::IntrinsicSize);
}
virtual bool isCachePending() const { return m_imageValue->isCachePending(); }
« no previous file with comments | « third_party/WebKit/Source/core/css/CSSImageValue.cpp ('k') | third_party/WebKit/Source/core/css/cssom/CSSStyleImageValue.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698