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

Side by Side Diff: Source/core/css/CSSPrimitiveValueMappings.h

Issue 99103006: Moving GraphicsContext and dependencies from core to platform. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Final patch - fixes Android Created 7 years 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/core/css/CSSImageGeneratorValue.cpp ('k') | Source/core/css/CSSSegmentedFontFace.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) 2007 Alexey Proskuryakov <ap@nypop.com>. 2 * Copyright (C) 2007 Alexey Proskuryakov <ap@nypop.com>.
3 * Copyright (C) 2008, 2009, 2010, 2011 Apple Inc. All rights reserved. 3 * Copyright (C) 2008, 2009, 2010, 2011 Apple Inc. All rights reserved.
4 * Copyright (C) 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmo bile.com/) 4 * Copyright (C) 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmo bile.com/)
5 * Copyright (C) 2009 Jeff Schiller <codedread@gmail.com> 5 * Copyright (C) 2009 Jeff Schiller <codedread@gmail.com>
6 * Copyright (C) Research In Motion Limited 2010. All rights reserved. 6 * Copyright (C) Research In Motion Limited 2010. All rights reserved.
7 * 7 *
8 * Redistribution and use in source and binary forms, with or without 8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions 9 * modification, are permitted provided that the following conditions
10 * are met: 10 * are met:
(...skipping 17 matching lines...) Expand all
28 */ 28 */
29 29
30 #ifndef CSSPrimitiveValueMappings_h 30 #ifndef CSSPrimitiveValueMappings_h
31 #define CSSPrimitiveValueMappings_h 31 #define CSSPrimitiveValueMappings_h
32 32
33 #include "CSSValueKeywords.h" 33 #include "CSSValueKeywords.h"
34 #include "core/css/CSSCalculationValue.h" 34 #include "core/css/CSSCalculationValue.h"
35 #include "core/css/CSSPrimitiveValue.h" 35 #include "core/css/CSSPrimitiveValue.h"
36 #include "core/css/CSSReflectionDirection.h" 36 #include "core/css/CSSReflectionDirection.h"
37 #include "core/css/CSSToLengthConversionData.h" 37 #include "core/css/CSSToLengthConversionData.h"
38 #include "core/platform/graphics/Path.h"
39 #include "core/rendering/style/LineClampValue.h" 38 #include "core/rendering/style/LineClampValue.h"
40 #include "core/rendering/style/RenderStyleConstants.h" 39 #include "core/rendering/style/RenderStyleConstants.h"
41 #include "core/rendering/style/SVGRenderStyleDefs.h" 40 #include "core/rendering/style/SVGRenderStyleDefs.h"
42 #include "platform/Length.h" 41 #include "platform/Length.h"
43 #include "platform/ThemeTypes.h" 42 #include "platform/ThemeTypes.h"
44 #include "platform/fonts/FontDescription.h" 43 #include "platform/fonts/FontDescription.h"
45 #include "platform/fonts/FontSmoothingMode.h" 44 #include "platform/fonts/FontSmoothingMode.h"
46 #include "platform/fonts/TextRenderingMode.h" 45 #include "platform/fonts/TextRenderingMode.h"
47 #include "platform/graphics/GraphicsTypes.h" 46 #include "platform/graphics/GraphicsTypes.h"
47 #include "platform/graphics/Path.h"
48 #include "platform/text/TextDirection.h" 48 #include "platform/text/TextDirection.h"
49 #include "platform/text/UnicodeBidi.h" 49 #include "platform/text/UnicodeBidi.h"
50 #include "platform/text/WritingMode.h" 50 #include "platform/text/WritingMode.h"
51 #include "wtf/MathExtras.h" 51 #include "wtf/MathExtras.h"
52 52
53 namespace WebCore { 53 namespace WebCore {
54 54
55 template<> inline CSSPrimitiveValue::CSSPrimitiveValue(short i) 55 template<> inline CSSPrimitiveValue::CSSPrimitiveValue(short i)
56 : CSSValue(PrimitiveClass) 56 : CSSValue(PrimitiveClass)
57 { 57 {
(...skipping 4926 matching lines...) Expand 10 before | Expand all | Expand 10 after
4984 default: 4984 default:
4985 break; 4985 break;
4986 } 4986 }
4987 ASSERT_NOT_REACHED(); 4987 ASSERT_NOT_REACHED();
4988 return ContentBox; 4988 return ContentBox;
4989 } 4989 }
4990 4990
4991 } 4991 }
4992 4992
4993 #endif 4993 #endif
OLDNEW
« no previous file with comments | « Source/core/css/CSSImageGeneratorValue.cpp ('k') | Source/core/css/CSSSegmentedFontFace.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698