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

Side by Side Diff: sky/engine/core/css/CSSComputedStyleDeclaration.cpp

Issue 915293003: Rename sky/engine/bindings2 to sky/engine/bindings (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: more better Created 5 years, 10 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
« no previous file with comments | « sky/engine/core/animation/AnimationNodeTiming.h ('k') | sky/engine/core/css/CSSMatrix.cpp » ('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) 2004 Zack Rusin <zack@kde.org> 2 * Copyright (C) 2004 Zack Rusin <zack@kde.org>
3 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights reserved. 3 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights reserved.
4 * Copyright (C) 2007 Alexey Proskuryakov <ap@webkit.org> 4 * Copyright (C) 2007 Alexey Proskuryakov <ap@webkit.org>
5 * Copyright (C) 2007 Nicholas Shanks <webkit@nickshanks.com> 5 * Copyright (C) 2007 Nicholas Shanks <webkit@nickshanks.com>
6 * Copyright (C) 2011 Sencha, Inc. All rights reserved. 6 * Copyright (C) 2011 Sencha, Inc. All rights reserved.
7 * 7 *
8 * This library is free software; you can redistribute it and/or 8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public 9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either 10 * License as published by the Free Software Foundation; either
(...skipping 10 matching lines...) Expand all
21 * 02110-1301 USA 21 * 02110-1301 USA
22 */ 22 */
23 23
24 #include "sky/engine/config.h" 24 #include "sky/engine/config.h"
25 #include "sky/engine/core/css/CSSComputedStyleDeclaration.h" 25 #include "sky/engine/core/css/CSSComputedStyleDeclaration.h"
26 26
27 #include "gen/sky/core/CSSPropertyNames.h" 27 #include "gen/sky/core/CSSPropertyNames.h"
28 #include "gen/sky/core/StylePropertyShorthand.h" 28 #include "gen/sky/core/StylePropertyShorthand.h"
29 #include "gen/sky/platform/FontFamilyNames.h" 29 #include "gen/sky/platform/FontFamilyNames.h"
30 #include "gen/sky/platform/RuntimeEnabledFeatures.h" 30 #include "gen/sky/platform/RuntimeEnabledFeatures.h"
31 #include "sky/engine/bindings2/exception_state.h" 31 #include "sky/engine/bindings/exception_state.h"
32 #include "sky/engine/core/animation/DocumentAnimations.h" 32 #include "sky/engine/core/animation/DocumentAnimations.h"
33 #include "sky/engine/core/css/BasicShapeFunctions.h" 33 #include "sky/engine/core/css/BasicShapeFunctions.h"
34 #include "sky/engine/core/css/CSSAspectRatioValue.h" 34 #include "sky/engine/core/css/CSSAspectRatioValue.h"
35 #include "sky/engine/core/css/CSSBorderImage.h" 35 #include "sky/engine/core/css/CSSBorderImage.h"
36 #include "sky/engine/core/css/CSSFilterValue.h" 36 #include "sky/engine/core/css/CSSFilterValue.h"
37 #include "sky/engine/core/css/CSSFontFeatureValue.h" 37 #include "sky/engine/core/css/CSSFontFeatureValue.h"
38 #include "sky/engine/core/css/CSSFontValue.h" 38 #include "sky/engine/core/css/CSSFontValue.h"
39 #include "sky/engine/core/css/CSSFunctionValue.h" 39 #include "sky/engine/core/css/CSSFunctionValue.h"
40 #include "sky/engine/core/css/CSSLineBoxContainValue.h" 40 #include "sky/engine/core/css/CSSLineBoxContainValue.h"
41 #include "sky/engine/core/css/CSSPrimitiveValue.h" 41 #include "sky/engine/core/css/CSSPrimitiveValue.h"
(...skipping 2271 matching lines...) Expand 10 before | Expand all | Expand 10 after
2313 static const CSSPropertyID propertiesAfterSlashSeperator[3] = { CSSPropertyB ackgroundSize, CSSPropertyBackgroundOrigin, 2313 static const CSSPropertyID propertiesAfterSlashSeperator[3] = { CSSPropertyB ackgroundSize, CSSPropertyBackgroundOrigin,
2314 CSSPropertyB ackgroundClip }; 2314 CSSPropertyB ackgroundClip };
2315 2315
2316 RefPtr<CSSValueList> list = CSSValueList::createSlashSeparated(); 2316 RefPtr<CSSValueList> list = CSSValueList::createSlashSeparated();
2317 list->append(valuesForShorthandProperty(StylePropertyShorthand(CSSPropertyBa ckground, propertiesBeforeSlashSeperator, WTF_ARRAY_LENGTH(propertiesBeforeSlash Seperator)))); 2317 list->append(valuesForShorthandProperty(StylePropertyShorthand(CSSPropertyBa ckground, propertiesBeforeSlashSeperator, WTF_ARRAY_LENGTH(propertiesBeforeSlash Seperator))));
2318 list->append(valuesForShorthandProperty(StylePropertyShorthand(CSSPropertyBa ckground, propertiesAfterSlashSeperator, WTF_ARRAY_LENGTH(propertiesAfterSlashSe perator)))); 2318 list->append(valuesForShorthandProperty(StylePropertyShorthand(CSSPropertyBa ckground, propertiesAfterSlashSeperator, WTF_ARRAY_LENGTH(propertiesAfterSlashSe perator))));
2319 return list.release(); 2319 return list.release();
2320 } 2320 }
2321 2321
2322 } // namespace blink 2322 } // namespace blink
OLDNEW
« no previous file with comments | « sky/engine/core/animation/AnimationNodeTiming.h ('k') | sky/engine/core/css/CSSMatrix.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698