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

Unified Diff: third_party/WebKit/Source/core/css/cssom/CSSUnparsedValue.cpp

Issue 2367663002: [WIP] Attempt to move everything cssom into a cssom namespace (Closed)
Patch Set: Created 4 years, 3 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/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
+

Powered by Google App Engine
This is Rietveld 408576698