| Index: third_party/WebKit/Source/core/css/cssom/CSSResourceValue.h
|
| diff --git a/third_party/WebKit/Source/core/css/cssom/CSSResourceValue.h b/third_party/WebKit/Source/core/css/cssom/CSSResourceValue.h
|
| index 00d29bb3d651bc613d46f6e89dd0151830f6526a..b7846a0b579a9a1f4e6de188fdbe590893677daf 100644
|
| --- a/third_party/WebKit/Source/core/css/cssom/CSSResourceValue.h
|
| +++ b/third_party/WebKit/Source/core/css/cssom/CSSResourceValue.h
|
| @@ -20,14 +20,14 @@ class CORE_EXPORT CSSResourceValue : public CSSStyleValue {
|
|
|
| const String state() const {
|
| switch (status()) {
|
| - case Resource::Status::NotStarted:
|
| + case ResourceStatus::NotStarted:
|
| return "unloaded";
|
| - case Resource::Status::Pending:
|
| + case ResourceStatus::Pending:
|
| return "loading";
|
| - case Resource::Status::Cached:
|
| + case ResourceStatus::Cached:
|
| return "loaded";
|
| - case Resource::Status::LoadError:
|
| - case Resource::Status::DecodeError:
|
| + case ResourceStatus::LoadError:
|
| + case ResourceStatus::DecodeError:
|
| return "error";
|
| default:
|
| NOTREACHED();
|
| @@ -40,7 +40,7 @@ class CORE_EXPORT CSSResourceValue : public CSSStyleValue {
|
| protected:
|
| CSSResourceValue() {}
|
|
|
| - virtual Resource::Status status() const = 0;
|
| + virtual ResourceStatus status() const = 0;
|
| };
|
|
|
| } // namespace blink
|
|
|