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

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

Issue 18733007: core/css: Include wtf files using "wtf/foo.h" form. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 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
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 29 matching lines...) Expand all
40 #include "core/platform/Length.h" 40 #include "core/platform/Length.h"
41 #include "core/platform/ThemeTypes.h" 41 #include "core/platform/ThemeTypes.h"
42 #include "core/platform/graphics/Path.h" 42 #include "core/platform/graphics/Path.h"
43 #include "core/platform/graphics/TextRenderingMode.h" 43 #include "core/platform/graphics/TextRenderingMode.h"
44 #include "core/platform/text/TextDirection.h" 44 #include "core/platform/text/TextDirection.h"
45 #include "core/platform/text/UnicodeBidi.h" 45 #include "core/platform/text/UnicodeBidi.h"
46 #include "core/platform/text/WritingMode.h" 46 #include "core/platform/text/WritingMode.h"
47 #include "core/rendering/style/LineClampValue.h" 47 #include "core/rendering/style/LineClampValue.h"
48 #include "core/rendering/style/RenderStyleConstants.h" 48 #include "core/rendering/style/RenderStyleConstants.h"
49 #include "core/rendering/style/SVGRenderStyleDefs.h" 49 #include "core/rendering/style/SVGRenderStyleDefs.h"
50 50
abarth-chromium 2013/07/11 03:39:17 this blank line too
tfarina 2013/07/11 14:00:29 Done.
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 {
58 m_primitiveUnitType = CSS_NUMBER; 58 m_primitiveUnitType = CSS_NUMBER;
59 m_value.num = static_cast<double>(i); 59 m_value.num = static_cast<double>(i);
60 } 60 }
61 61
(...skipping 4620 matching lines...) Expand 10 before | Expand all | Expand 10 after
4682 break; 4682 break;
4683 } 4683 }
4684 4684
4685 ASSERT_NOT_REACHED(); 4685 ASSERT_NOT_REACHED();
4686 return TouchActionNone; 4686 return TouchActionNone;
4687 } 4687 }
4688 4688
4689 } 4689 }
4690 4690
4691 #endif 4691 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698