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

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

Issue 2642383003: Replace Resource::Status with ResourceStatus (Closed)
Patch Set: Rebase. Created 3 years, 11 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/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 a561eb23137b1ff667c398a2666e62cba2350b89..667d4dfad43261af48f57415120476463c610e3e 100644
--- a/third_party/WebKit/Source/core/css/cssom/CSSStyleImageValue.h
+++ b/third_party/WebKit/Source/core/css/cssom/CSSStyleImageValue.h
@@ -62,9 +62,9 @@ class CORE_EXPORT CSSStyleImageValue : public CSSResourceValue,
virtual bool isCachePending() const { return m_imageValue->isCachePending(); }
- Resource::Status status() const override {
+ ResourceStatus status() const override {
if (isCachePending())
- return Resource::Status::NotStarted;
+ return ResourceStatus::NotStarted;
return m_imageValue->cachedImage()->cachedImage()->getStatus();
}

Powered by Google App Engine
This is Rietveld 408576698