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

Side by Side Diff: Source/core/css/resolver/StyleBuilderCustom.cpp

Issue 291863003: Replace CursorList with RefVector<CursorData>. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 7 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) 2013 Google Inc. All rights reserved. 2 * Copyright (C) 2013 Google Inc. All rights reserved.
3 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) 3 * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
4 * (C) 2004-2005 Allan Sandfeld Jensen (kde@carewolf.com) 4 * (C) 2004-2005 Allan Sandfeld Jensen (kde@carewolf.com)
5 * Copyright (C) 2006, 2007 Nicholas Shanks (webkit@nickshanks.com) 5 * Copyright (C) 2006, 2007 Nicholas Shanks (webkit@nickshanks.com)
6 * Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 Apple Inc. All rights reserved. 6 * Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 Apple Inc. All rights reserved.
7 * Copyright (C) 2007 Alexey Proskuryakov <ap@webkit.org> 7 * Copyright (C) 2007 Alexey Proskuryakov <ap@webkit.org>
8 * Copyright (C) 2007, 2008 Eric Seidel <eric@webkit.org> 8 * Copyright (C) 2007, 2008 Eric Seidel <eric@webkit.org>
9 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t orchmobile.com/) 9 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t orchmobile.com/)
10 * Copyright (c) 2011, Code Aurora Forum. All rights reserved. 10 * Copyright (c) 2011, Code Aurora Forum. All rights reserved.
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
60 #include "core/css/StylePropertySet.h" 60 #include "core/css/StylePropertySet.h"
61 #include "core/css/StyleRule.h" 61 #include "core/css/StyleRule.h"
62 #include "core/css/resolver/ElementStyleResources.h" 62 #include "core/css/resolver/ElementStyleResources.h"
63 #include "core/css/resolver/FilterOperationResolver.h" 63 #include "core/css/resolver/FilterOperationResolver.h"
64 #include "core/css/resolver/FontBuilder.h" 64 #include "core/css/resolver/FontBuilder.h"
65 #include "core/css/resolver/StyleBuilder.h" 65 #include "core/css/resolver/StyleBuilder.h"
66 #include "core/css/resolver/TransformBuilder.h" 66 #include "core/css/resolver/TransformBuilder.h"
67 #include "core/frame/LocalFrame.h" 67 #include "core/frame/LocalFrame.h"
68 #include "core/frame/Settings.h" 68 #include "core/frame/Settings.h"
69 #include "core/rendering/style/CounterContent.h" 69 #include "core/rendering/style/CounterContent.h"
70 #include "core/rendering/style/CursorList.h"
71 #include "core/rendering/style/QuotesData.h" 70 #include "core/rendering/style/QuotesData.h"
72 #include "core/rendering/style/RenderStyle.h" 71 #include "core/rendering/style/RenderStyle.h"
73 #include "core/rendering/style/RenderStyleConstants.h" 72 #include "core/rendering/style/RenderStyleConstants.h"
74 #include "core/rendering/style/SVGRenderStyle.h" 73 #include "core/rendering/style/SVGRenderStyle.h"
75 #include "core/rendering/style/SVGRenderStyleDefs.h" 74 #include "core/rendering/style/SVGRenderStyleDefs.h"
76 #include "core/rendering/style/StyleGeneratedImage.h" 75 #include "core/rendering/style/StyleGeneratedImage.h"
77 #include "core/svg/SVGPaint.h" 76 #include "core/svg/SVGPaint.h"
78 #include "platform/fonts/FontDescription.h" 77 #include "platform/fonts/FontDescription.h"
79 #include "wtf/MathExtras.h" 78 #include "wtf/MathExtras.h"
80 #include "wtf/StdLibExtras.h" 79 #include "wtf/StdLibExtras.h"
(...skipping 1742 matching lines...) Expand 10 before | Expand all | Expand 10 after
1823 } 1822 }
1824 // end of ident only properties 1823 // end of ident only properties
1825 case CSSPropertyEnableBackground: 1824 case CSSPropertyEnableBackground:
1826 // Silently ignoring this property for now 1825 // Silently ignoring this property for now
1827 // http://bugs.webkit.org/show_bug.cgi?id=6022 1826 // http://bugs.webkit.org/show_bug.cgi?id=6022
1828 break; 1827 break;
1829 } 1828 }
1830 } 1829 }
1831 1830
1832 } // namespace WebCore 1831 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/css/CSSComputedStyleDeclaration.cpp ('k') | Source/core/css/resolver/StyleResourceLoader.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698