| Index: third_party/WebKit/Source/core/css/cssom/CSSUnparsedValue.cpp
|
| diff --git a/third_party/WebKit/Source/core/css/cssom/CSSUnparsedValue.cpp b/third_party/WebKit/Source/core/css/cssom/CSSUnparsedValue.cpp
|
| index 21bdbc02e5e16e1212ed86d0cb8323a717af1fe8..3ad7e62f96bc8926c850d59d8920c5df53871cdc 100644
|
| --- a/third_party/WebKit/Source/core/css/cssom/CSSUnparsedValue.cpp
|
| +++ b/third_party/WebKit/Source/core/css/cssom/CSSUnparsedValue.cpp
|
| @@ -9,6 +9,7 @@
|
| #include "wtf/text/StringBuilder.h"
|
|
|
| namespace blink {
|
| +namespace cssom {
|
|
|
| namespace {
|
|
|
| @@ -19,7 +20,7 @@ public:
|
| {
|
| }
|
|
|
| - bool next(ScriptState*, StringOrCSSVariableReferenceValue& value, ExceptionState&) override
|
| + bool next(blink::ScriptState*, StringOrCSSVariableReferenceValue& value, ExceptionState&) override
|
| {
|
| if (m_index >= m_unparsedValue->size())
|
| return false;
|
| @@ -81,7 +82,7 @@ HeapVector<StringOrCSSVariableReferenceValue> parserTokenRangeToFragments(CSSPar
|
|
|
| } // namespace
|
|
|
| -ValueIterable<StringOrCSSVariableReferenceValue>::IterationSource* CSSUnparsedValue::startIteration(ScriptState*, ExceptionState&)
|
| +ValueIterable<StringOrCSSVariableReferenceValue>::IterationSource* CSSUnparsedValue::startIteration(blink::ScriptState*, ExceptionState&)
|
| {
|
| return new UnparsedValueIterationSource(this);
|
| }
|
| @@ -111,4 +112,6 @@ CSSValue* CSSUnparsedValue::toCSSValue() const
|
| return CSSVariableReferenceValue::create(CSSVariableData::create(scope.tokenRange()));
|
| }
|
|
|
| +} // namespace cssom
|
| } // namespace blink
|
| +
|
|
|