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

Side by Side Diff: third_party/WebKit/Source/core/css/cssom/CSSUnsupportedStyleValue.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 unified diff | Download patch
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "core/css/cssom/CSSUnsupportedStyleValue.h" 5 #include "core/css/cssom/CSSUnsupportedStyleValue.h"
6 6
7 #include "core/CSSPropertyNames.h" 7 #include "core/CSSPropertyNames.h"
8 #include "core/css/parser/CSSParser.h" 8 #include "core/css/parser/CSSParser.h"
9 9
10 namespace blink { 10 namespace blink {
11 namespace cssom {
11 12
12 const CSSValue* CSSUnsupportedStyleValue::toCSSValue() const 13 const CSSValue* CSSUnsupportedStyleValue::toCSSValue() const
13 { 14 {
14 NOTREACHED(); 15 NOTREACHED();
15 return nullptr; 16 return nullptr;
16 } 17 }
17 18
18 const CSSValue* CSSUnsupportedStyleValue::toCSSValueWithProperty(CSSPropertyID p ropertyID) const 19 const CSSValue* CSSUnsupportedStyleValue::toCSSValueWithProperty(CSSPropertyID p ropertyID) const
19 { 20 {
20 return CSSParser::parseSingleValue(propertyID, m_cssText, strictCSSParserCon text()); 21 return CSSParser::parseSingleValue(propertyID, m_cssText, strictCSSParserCon text());
21 } 22 }
22 23
24 } // namespace cssom
23 } // namespace blink 25 } // namespace blink
26
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698