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

Side by Side Diff: Source/core/css/parser/CSSParserToken.cpp

Issue 1192983003: CSS Custom Properties (Variables) (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: ToT-ed again... Created 5 years, 5 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 | Annotate | Revision Log
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 "config.h" 5 #include "config.h"
6 #include "core/css/parser/CSSParserToken.h" 6 #include "core/css/parser/CSSParserToken.h"
7 7
8 #include "core/css/CSSMarkup.h" 8 #include "core/css/CSSMarkup.h"
9 #include "core/css/parser/CSSPropertyParser.h" 9 #include "core/css/parser/CSSPropertyParser.h"
10 #include "wtf/HashMap.h" 10 #include "wtf/HashMap.h"
(...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after
184 case RightParenthesisToken: 184 case RightParenthesisToken:
185 return builder.append(')'); 185 return builder.append(')');
186 case LeftBracketToken: 186 case LeftBracketToken:
187 return builder.append('['); 187 return builder.append('[');
188 case RightBracketToken: 188 case RightBracketToken:
189 return builder.append(']'); 189 return builder.append(']');
190 case LeftBraceToken: 190 case LeftBraceToken:
191 return builder.append('{'); 191 return builder.append('{');
192 case RightBraceToken: 192 case RightBraceToken:
193 return builder.append('}'); 193 return builder.append('}');
194
Timothy Loh 2015/07/23 08:11:47 not needed?
195 case EOFToken: 194 case EOFToken:
196 case CommentToken: 195 case CommentToken:
197 ASSERT_NOT_REACHED(); 196 ASSERT_NOT_REACHED();
198 return; 197 return;
199 } 198 }
200 } 199 }
201 200
202 } // namespace blink 201 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698