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

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

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.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

Powered by Google App Engine
This is Rietveld 408576698