Index: third_party/WebKit/Source/core/css/CSSImageValue.h |
diff --git a/third_party/WebKit/Source/core/css/CSSImageValue.h b/third_party/WebKit/Source/core/css/CSSImageValue.h |
index 5ec97cdb92790aa4bd3cb4656906b34b305f06ff..1c6d7d96dce22d8591ff1dd805c0c94df0cadce8 100644 |
--- a/third_party/WebKit/Source/core/css/CSSImageValue.h |
+++ b/third_party/WebKit/Source/core/css/CSSImageValue.h |
@@ -23,6 +23,7 @@ |
#include "core/css/CSSValue.h" |
#include "core/fetch/ResourceFetcher.h" |
tyoshino (SeeGerritForStatus)
2015/12/07 08:49:54
remove?
horo
2015/12/07 09:25:05
Done.
Moved to CSSImageValue.cpp
|
+#include "platform/CrossOriginAttributeValue.h" |
#include "platform/weborigin/Referrer.h" |
#include "wtf/RefPtr.h" |
@@ -52,8 +53,7 @@ public: |
bool isCachePending() const { return m_isCachePending; } |
StyleFetchedImage* cachedImage() const { ASSERT(!isCachePending()); return m_cachedImage.get(); } |
- StyleFetchedImage* cacheImage(Document*, const ResourceLoaderOptions&); |
- StyleFetchedImage* cacheImage(Document* document) { return cacheImage(document, ResourceFetcher::defaultResourceOptions()); } |
+ StyleFetchedImage* cacheImage(Document*, CrossOriginAttributeValue = CrossOriginAttributeNotSet); |
const String& url() { return m_absoluteURL; } |