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

Side by Side Diff: Source/WebCore/css/CSSParserValues.cpp

Issue 13650009: Remove Dashboard support and supporting files. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix compiler error due to misspelling in code "Dashbard" Created 7 years, 8 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
« no previous file with comments | « Source/WebCore/css/CSSParser.cpp ('k') | Source/WebCore/css/CSSPrimitiveValue.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2003 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 2003 Lars Knoll (knoll@kde.org)
3 * Copyright (C) 2004, 2005, 2006, 2008 Apple Inc. All rights reserved. 3 * Copyright (C) 2004, 2005, 2006, 2008 Apple Inc. All rights reserved.
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,
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after
119 case CSSPrimitiveValue::CSS_UNKNOWN: 119 case CSSPrimitiveValue::CSS_UNKNOWN:
120 case CSSPrimitiveValue::CSS_DIMENSION: 120 case CSSPrimitiveValue::CSS_DIMENSION:
121 case CSSPrimitiveValue::CSS_ATTR: 121 case CSSPrimitiveValue::CSS_ATTR:
122 case CSSPrimitiveValue::CSS_COUNTER: 122 case CSSPrimitiveValue::CSS_COUNTER:
123 case CSSPrimitiveValue::CSS_RECT: 123 case CSSPrimitiveValue::CSS_RECT:
124 case CSSPrimitiveValue::CSS_RGBCOLOR: 124 case CSSPrimitiveValue::CSS_RGBCOLOR:
125 case CSSPrimitiveValue::CSS_DPPX: 125 case CSSPrimitiveValue::CSS_DPPX:
126 case CSSPrimitiveValue::CSS_DPI: 126 case CSSPrimitiveValue::CSS_DPI:
127 case CSSPrimitiveValue::CSS_DPCM: 127 case CSSPrimitiveValue::CSS_DPCM:
128 case CSSPrimitiveValue::CSS_PAIR: 128 case CSSPrimitiveValue::CSS_PAIR:
129 #if ENABLE(DASHBOARD_SUPPORT)
130 case CSSPrimitiveValue::CSS_DASHBOARD_REGION:
131 #endif
132 case CSSPrimitiveValue::CSS_UNICODE_RANGE: 129 case CSSPrimitiveValue::CSS_UNICODE_RANGE:
133 case CSSPrimitiveValue::CSS_PARSER_OPERATOR: 130 case CSSPrimitiveValue::CSS_PARSER_OPERATOR:
134 case CSSPrimitiveValue::CSS_PARSER_INTEGER: 131 case CSSPrimitiveValue::CSS_PARSER_INTEGER:
135 case CSSPrimitiveValue::CSS_PARSER_IDENTIFIER: 132 case CSSPrimitiveValue::CSS_PARSER_IDENTIFIER:
136 case CSSPrimitiveValue::CSS_COUNTER_NAME: 133 case CSSPrimitiveValue::CSS_COUNTER_NAME:
137 case CSSPrimitiveValue::CSS_SHAPE: 134 case CSSPrimitiveValue::CSS_SHAPE:
138 case CSSPrimitiveValue::CSS_QUAD: 135 case CSSPrimitiveValue::CSS_QUAD:
139 case CSSPrimitiveValue::CSS_CALC: 136 case CSSPrimitiveValue::CSS_CALC:
140 case CSSPrimitiveValue::CSS_CALC_PERCENTAGE_WITH_NUMBER: 137 case CSSPrimitiveValue::CSS_CALC_PERCENTAGE_WITH_NUMBER:
141 case CSSPrimitiveValue::CSS_CALC_PERCENTAGE_WITH_LENGTH: 138 case CSSPrimitiveValue::CSS_CALC_PERCENTAGE_WITH_LENGTH:
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
237 do { 234 do {
238 if (selector->isDistributedPseudoElement()) 235 if (selector->isDistributedPseudoElement())
239 return selector; 236 return selector;
240 } while ((selector = selector->tagHistory())); 237 } while ((selector = selector->tagHistory()));
241 return 0; 238 return 0;
242 } 239 }
243 #endif 240 #endif
244 241
245 } 242 }
246 243
OLDNEW
« no previous file with comments | « Source/WebCore/css/CSSParser.cpp ('k') | Source/WebCore/css/CSSPrimitiveValue.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698