| Index: third_party/WebKit/Source/core/css/cssom/CSSUnparsedValue.h
|
| diff --git a/third_party/WebKit/Source/core/css/cssom/CSSUnparsedValue.h b/third_party/WebKit/Source/core/css/cssom/CSSUnparsedValue.h
|
| index 0a360df1be0bbc6180237f3c07c7db43a643caac..bfce12ec9eecb110422a3e66b191fceddf658100 100644
|
| --- a/third_party/WebKit/Source/core/css/cssom/CSSUnparsedValue.h
|
| +++ b/third_party/WebKit/Source/core/css/cssom/CSSUnparsedValue.h
|
| @@ -12,6 +12,7 @@
|
| #include "wtf/Vector.h"
|
|
|
| namespace blink {
|
| +namespace cssom {
|
|
|
| class CORE_EXPORT CSSUnparsedValue final : public CSSStyleValue, public ValueIterable<StringOrCSSVariableReferenceValue> {
|
| WTF_MAKE_NONCOPYABLE(CSSUnparsedValue);
|
| @@ -46,11 +47,13 @@ protected:
|
| }
|
|
|
| private:
|
| - IterationSource* startIteration(ScriptState*, ExceptionState&) override;
|
| + IterationSource* startIteration(blink::ScriptState*, ExceptionState&) override;
|
|
|
| HeapVector<StringOrCSSVariableReferenceValue> m_fragments;
|
| };
|
|
|
| +} // namespace cssom
|
| } // namespace blink
|
|
|
| +
|
| #endif // CSSUnparsedValue_h
|
|
|