blob: 1447329cd868db5bc5d64ca7aba0e5158d69aa01 [file] [log] [blame]
// Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CSSResourceValue_h
#define CSSResourceValue_h
#include "base/macros.h"
#include "core/css/cssom/CSSStyleValue.h"
#include "platform/loader/fetch/Resource.h"
namespace blink {
class CORE_EXPORT CSSResourceValue : public CSSStyleValue {
DEFINE_WRAPPERTYPEINFO();
public:
virtual ~CSSResourceValue() = default;
const String state() const {
switch (Status()) {
case ResourceStatus::kNotStarted:
return "unloaded";
case ResourceStatus::kPending:
return "loading";
case ResourceStatus::kCached:
return "loaded";
case ResourceStatus::kLoadError:
case ResourceStatus::kDecodeError:
return "error";
default:
NOTREACHED();
return "";
}
}
virtual void Trace(blink::Visitor* visitor) { CSSStyleValue::Trace(visitor); }
protected:
CSSResourceValue() = default;
virtual ResourceStatus Status() const = 0;
private:
DISALLOW_COPY_AND_ASSIGN(CSSResourceValue);
};
} // namespace blink
#endif // CSSResourceValue_h