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

Side by Side Diff: third_party/WebKit/Source/core/css/CSSURIValue.cpp

Issue 1306823004: Split out String, URI and CustomIdent from CSSPrimitiveValue (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@split_out_attr_values
Patch Set: Rebase Created 5 years, 2 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
(Empty)
1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "config.h"
6 #include "core/css/CSSURIValue.h"
7
8 #include "core/css/CSSMarkup.h"
9 #include "wtf/text/WTFString.h"
10
11 namespace blink {
12
13 CSSURIValue::CSSURIValue(const String& str)
14 : CSSValue(URIClass)
15 , m_string(str) { }
16
17 String CSSURIValue::customCSSText() const
18 {
19 return serializeURI(m_string);
20 }
21
22 DEFINE_TRACE_AFTER_DISPATCH(CSSURIValue)
23 {
24 CSSValue::traceAfterDispatch(visitor);
25 }
26
27 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/css/CSSURIValue.h ('k') | third_party/WebKit/Source/core/css/CSSValue.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698