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

Side by Side Diff: Source/core/rendering/style/RenderStyle.cpp

Issue 14476012: Absolutify paths to most subfolders of platform/graphics/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: iwyu 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 1999 Antti Koivisto (koivisto@kde.org) 2 * Copyright (C) 1999 Antti Koivisto (koivisto@kde.org)
3 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights reserved. 3 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights reserved.
4 * Copyright (C) 2011 Adobe Systems Incorporated. All rights reserved. 4 * Copyright (C) 2011 Adobe Systems Incorporated. All rights reserved.
5 * 5 *
6 * This library is free software; you can redistribute it and/or 6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Library General Public 7 * modify it under the terms of the GNU Library General Public
8 * License as published by the Free Software Foundation; either 8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version. 9 * version 2 of the License, or (at your option) any later version.
10 * 10 *
(...skipping 13 matching lines...) Expand all
24 #include "RenderStyle.h" 24 #include "RenderStyle.h"
25 25
26 #include <algorithm> 26 #include <algorithm>
27 #include "CSSPropertyNames.h" 27 #include "CSSPropertyNames.h"
28 #include "ContentData.h" 28 #include "ContentData.h"
29 #include "CursorList.h" 29 #include "CursorList.h"
30 #include "QuotesData.h" 30 #include "QuotesData.h"
31 #include "RenderArena.h" 31 #include "RenderArena.h"
32 #include "RenderObject.h" 32 #include "RenderObject.h"
33 #include "RenderTheme.h" 33 #include "RenderTheme.h"
34 #include "ScaleTransformOperation.h"
35 #include "ShadowData.h" 34 #include "ShadowData.h"
36 #include "StyleImage.h" 35 #include "StyleImage.h"
37 #include "StyleInheritedData.h" 36 #include "StyleInheritedData.h"
38 #include "StyleResolver.h" 37 #include "StyleResolver.h"
39 #include "TextAutosizer.h" 38 #include "TextAutosizer.h"
40 #include "WebCoreMemoryInstrumentation.h" 39 #include "WebCoreMemoryInstrumentation.h"
41 #include "core/platform/graphics/Font.h" 40 #include "core/platform/graphics/Font.h"
42 #include "core/platform/graphics/FontSelector.h" 41 #include "core/platform/graphics/FontSelector.h"
42 #include "core/platform/graphics/transforms/ScaleTransformOperation.h"
43 #include <wtf/MathExtras.h> 43 #include <wtf/MathExtras.h>
44 #include <wtf/MemoryInstrumentationVector.h> 44 #include <wtf/MemoryInstrumentationVector.h>
45 #include <wtf/MemoryObjectInfo.h> 45 #include <wtf/MemoryObjectInfo.h>
46 #include <wtf/StdLibExtras.h> 46 #include <wtf/StdLibExtras.h>
47 47
48 using namespace std; 48 using namespace std;
49 49
50 namespace WebCore { 50 namespace WebCore {
51 51
52 struct SameSizeAsBorderValue { 52 struct SameSizeAsBorderValue {
(...skipping 1532 matching lines...) Expand 10 before | Expand all | Expand 10 after
1585 info.addMember(inherited, "inherited"); 1585 info.addMember(inherited, "inherited");
1586 info.addMember(m_cachedPseudoStyles, "cachedPseudoStyles"); 1586 info.addMember(m_cachedPseudoStyles, "cachedPseudoStyles");
1587 #if ENABLE(SVG) 1587 #if ENABLE(SVG)
1588 info.addMember(m_svgStyle, "svgStyle"); 1588 info.addMember(m_svgStyle, "svgStyle");
1589 #endif 1589 #endif
1590 info.addMember(inherited_flags, "inherited_flags"); 1590 info.addMember(inherited_flags, "inherited_flags");
1591 info.addMember(noninherited_flags, "noninherited_flags"); 1591 info.addMember(noninherited_flags, "noninherited_flags");
1592 } 1592 }
1593 1593
1594 } // namespace WebCore 1594 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/rendering/style/RenderStyle.h ('k') | Source/core/rendering/style/StyleCustomFilterProgram.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698