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

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

Issue 2382653006: Split CSSPrimitiveValue into CSSPrimitiveValue and CSSIdentifierValue (Closed)
Patch Set: Make check-webkit-style happy Created 4 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
1 /** 1 /**
2 * (C) 1999-2003 Lars Knoll (knoll@kde.org) 2 * (C) 1999-2003 Lars Knoll (knoll@kde.org)
3 * Copyright (C) 2004, 2005, 2006, 2009 Apple Computer, Inc. 3 * Copyright (C) 2004, 2005, 2006, 2009 Apple Computer, Inc.
4 * 4 *
5 * This library is free software; you can redistribute it and/or 5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Library General Public 6 * modify it under the terms of the GNU Library General Public
7 * License as published by the Free Software Foundation; either 7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version. 8 * version 2 of the License, or (at your option) any later version.
9 * 9 *
10 * This library is distributed in the hope that it will be useful, 10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Library General Public License for more details. 13 * Library General Public License for more details.
14 * 14 *
15 * You should have received a copy of the GNU Library General Public License 15 * You should have received a copy of the GNU Library General Public License
16 * along with this library; see the file COPYING.LIB. If not, write to 16 * along with this library; see the file COPYING.LIB. If not, write to
17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18 * Boston, MA 02110-1301, USA. 18 * Boston, MA 02110-1301, USA.
19 */ 19 */
20 #include "core/css/CSSShadowValue.h" 20 #include "core/css/CSSShadowValue.h"
21 21
22 #include "core/css/CSSIdentifierValue.h"
22 #include "core/css/CSSPrimitiveValue.h" 23 #include "core/css/CSSPrimitiveValue.h"
23 #include "wtf/text/StringBuilder.h" 24 #include "wtf/text/StringBuilder.h"
24 #include "wtf/text/WTFString.h" 25 #include "wtf/text/WTFString.h"
25 26
26 namespace blink { 27 namespace blink {
27 28
28 // Used for text-shadow and box-shadow 29 // Used for text-shadow and box-shadow
29 CSSShadowValue::CSSShadowValue(CSSPrimitiveValue* x, 30 CSSShadowValue::CSSShadowValue(CSSPrimitiveValue* x,
30 CSSPrimitiveValue* y, 31 CSSPrimitiveValue* y,
31 CSSPrimitiveValue* blur, 32 CSSPrimitiveValue* blur,
32 CSSPrimitiveValue* spread, 33 CSSPrimitiveValue* spread,
33 CSSPrimitiveValue* style, 34 CSSIdentifierValue* style,
34 CSSValue* color) 35 CSSValue* color)
35 : CSSValue(ShadowClass), 36 : CSSValue(ShadowClass),
36 x(x), 37 x(x),
37 y(y), 38 y(y),
38 blur(blur), 39 blur(blur),
39 spread(spread), 40 spread(spread),
40 style(style), 41 style(style),
41 color(color) {} 42 color(color) {}
42 43
43 String CSSShadowValue::customCSSText() const { 44 String CSSShadowValue::customCSSText() const {
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
86 visitor->trace(x); 87 visitor->trace(x);
87 visitor->trace(y); 88 visitor->trace(y);
88 visitor->trace(blur); 89 visitor->trace(blur);
89 visitor->trace(spread); 90 visitor->trace(spread);
90 visitor->trace(style); 91 visitor->trace(style);
91 visitor->trace(color); 92 visitor->trace(color);
92 CSSValue::traceAfterDispatch(visitor); 93 CSSValue::traceAfterDispatch(visitor);
93 } 94 }
94 95
95 } // namespace blink 96 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/css/CSSShadowValue.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