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

Side by Side Diff: Source/core/core.gypi

Issue 550363004: Factor painting code out of RenderBox into a new class called BoxPainter. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix Created 6 years, 3 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
« no previous file with comments | « no previous file | Source/core/paint/BoxPainter.h » ('j') | Source/core/rendering/RenderBox.cpp » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 { 1 {
2 'includes': [ 2 'includes': [
3 'core_generated.gypi', 3 'core_generated.gypi',
4 ], 4 ],
5 'variables': { 5 'variables': {
6 # Files for which bindings (.cpp and .h files) will be generated 6 # Files for which bindings (.cpp and .h files) will be generated
7 'core_idl_files': [ 7 'core_idl_files': [
8 'animation/Animation.idl', 8 'animation/Animation.idl',
9 'animation/AnimationEffect.idl', 9 'animation/AnimationEffect.idl',
10 'animation/AnimationPlayer.idl', 10 'animation/AnimationPlayer.idl',
(...skipping 1460 matching lines...) Expand 10 before | Expand all | Expand 10 after
1471 'page/TouchAdjustment.cpp', 1471 'page/TouchAdjustment.cpp',
1472 'page/TouchAdjustment.h', 1472 'page/TouchAdjustment.h',
1473 'page/TouchDisambiguation.cpp', 1473 'page/TouchDisambiguation.cpp',
1474 'page/TouchDisambiguation.h', 1474 'page/TouchDisambiguation.h',
1475 'page/WindowFeatures.cpp', 1475 'page/WindowFeatures.cpp',
1476 'page/WindowFocusAllowedIndicator.cpp', 1476 'page/WindowFocusAllowedIndicator.cpp',
1477 'page/scrolling/ScrollingConstraints.cpp', 1477 'page/scrolling/ScrollingConstraints.cpp',
1478 'page/scrolling/ScrollingConstraints.h', 1478 'page/scrolling/ScrollingConstraints.h',
1479 'page/scrolling/ScrollingCoordinator.cpp', 1479 'page/scrolling/ScrollingCoordinator.cpp',
1480 'page/scrolling/ScrollingCoordinator.h', 1480 'page/scrolling/ScrollingCoordinator.h',
1481 'paint/BoxPainter.cpp',
1482 'paint/BoxPainter.h',
1481 'plugins/DOMMimeType.cpp', 1483 'plugins/DOMMimeType.cpp',
1482 'plugins/DOMMimeType.h', 1484 'plugins/DOMMimeType.h',
1483 'plugins/DOMMimeTypeArray.cpp', 1485 'plugins/DOMMimeTypeArray.cpp',
1484 'plugins/DOMMimeTypeArray.h', 1486 'plugins/DOMMimeTypeArray.h',
1485 'plugins/DOMPlugin.cpp', 1487 'plugins/DOMPlugin.cpp',
1486 'plugins/DOMPlugin.h', 1488 'plugins/DOMPlugin.h',
1487 'plugins/DOMPluginArray.cpp', 1489 'plugins/DOMPluginArray.cpp',
1488 'plugins/DOMPluginArray.h', 1490 'plugins/DOMPluginArray.h',
1489 'plugins/PluginOcclusionSupport.cpp', 1491 'plugins/PluginOcclusionSupport.cpp',
1490 'plugins/PluginOcclusionSupport.h', 1492 'plugins/PluginOcclusionSupport.h',
1491 'plugins/PluginView.h', 1493 'plugins/PluginView.h',
1492 'rendering/AbstractInlineTextBox.cpp', 1494 'rendering/AbstractInlineTextBox.cpp',
1493 'rendering/AbstractInlineTextBox.h', 1495 'rendering/AbstractInlineTextBox.h',
1494 'rendering/AutoTableLayout.cpp', 1496 'rendering/AutoTableLayout.cpp',
1495 'rendering/AutoTableLayout.h', 1497 'rendering/AutoTableLayout.h',
1498 'rendering/BoxDecorationData.h',
1499 'rendering/BoxDecorationData.cpp',
Stephen Chennney 2014/09/09 16:14:37 I would rather put this in paint now, when you're
chrishtr 2014/09/09 16:55:44 Done.
1496 'rendering/BidiRun.h', 1500 'rendering/BidiRun.h',
1497 'rendering/BidiRunForLine.cpp', 1501 'rendering/BidiRunForLine.cpp',
1498 'rendering/BidiRunForLine.h', 1502 'rendering/BidiRunForLine.h',
1499 'rendering/ClipRect.cpp', 1503 'rendering/ClipRect.cpp',
1500 'rendering/ClipRect.h', 1504 'rendering/ClipRect.h',
1501 'rendering/ClipRects.h', 1505 'rendering/ClipRects.h',
1502 'rendering/ClipRectsCache.h', 1506 'rendering/ClipRectsCache.h',
1503 'rendering/CounterNode.cpp', 1507 'rendering/CounterNode.cpp',
1504 'rendering/CounterNode.h', 1508 'rendering/CounterNode.h',
1505 'rendering/EllipsisBox.cpp', 1509 'rendering/EllipsisBox.cpp',
(...skipping 235 matching lines...) Expand 10 before | Expand all | Expand 10 after
1741 'rendering/shapes/RasterShape.h', 1745 'rendering/shapes/RasterShape.h',
1742 'rendering/shapes/RectangleShape.cpp', 1746 'rendering/shapes/RectangleShape.cpp',
1743 'rendering/shapes/RectangleShape.h', 1747 'rendering/shapes/RectangleShape.h',
1744 'rendering/shapes/Shape.cpp', 1748 'rendering/shapes/Shape.cpp',
1745 'rendering/shapes/Shape.h', 1749 'rendering/shapes/Shape.h',
1746 'rendering/shapes/ShapeInterval.h', 1750 'rendering/shapes/ShapeInterval.h',
1747 'rendering/shapes/ShapeOutsideInfo.cpp', 1751 'rendering/shapes/ShapeOutsideInfo.cpp',
1748 'rendering/shapes/ShapeOutsideInfo.h', 1752 'rendering/shapes/ShapeOutsideInfo.h',
1749 'rendering/style/AppliedTextDecoration.cpp', 1753 'rendering/style/AppliedTextDecoration.cpp',
1750 'rendering/style/BasicShapes.cpp', 1754 'rendering/style/BasicShapes.cpp',
1755 'rendering/style/BorderEdge.h',
1756 'rendering/style/BorderEdge.cpp',
1751 'rendering/style/BorderImageLength.h', 1757 'rendering/style/BorderImageLength.h',
1752 'rendering/style/BorderImageLengthBox.h', 1758 'rendering/style/BorderImageLengthBox.h',
1753 'rendering/style/CachedUAStyle.h', 1759 'rendering/style/CachedUAStyle.h',
1754 'rendering/style/ContentData.cpp', 1760 'rendering/style/ContentData.cpp',
1755 'rendering/style/CounterDirectives.cpp', 1761 'rendering/style/CounterDirectives.cpp',
1756 'rendering/style/FillLayer.cpp', 1762 'rendering/style/FillLayer.cpp',
1757 'rendering/style/GridCoordinate.h', 1763 'rendering/style/GridCoordinate.h',
1758 'rendering/style/GridResolvedPosition.cpp', 1764 'rendering/style/GridResolvedPosition.cpp',
1759 'rendering/style/GridResolvedPosition.h', 1765 'rendering/style/GridResolvedPosition.h',
1760 'rendering/style/KeyframeList.cpp', 1766 'rendering/style/KeyframeList.cpp',
(...skipping 1742 matching lines...) Expand 10 before | Expand all | Expand 10 after
3503 'rendering/shapes/BoxShapeTest.cpp', 3509 'rendering/shapes/BoxShapeTest.cpp',
3504 'rendering/style/OutlineValueTest.cpp', 3510 'rendering/style/OutlineValueTest.cpp',
3505 'testing/PrivateScriptTestTest.cpp', 3511 'testing/PrivateScriptTestTest.cpp',
3506 'streams/ReadableStreamTest.cpp', 3512 'streams/ReadableStreamTest.cpp',
3507 'testing/UnitTestHelpers.cpp', 3513 'testing/UnitTestHelpers.cpp',
3508 'testing/UnitTestHelpers.h', 3514 'testing/UnitTestHelpers.h',
3509 'xml/parser/SharedBufferReaderTest.cpp', 3515 'xml/parser/SharedBufferReaderTest.cpp',
3510 ], 3516 ],
3511 } 3517 }
3512 } 3518 }
OLDNEW
« no previous file with comments | « no previous file | Source/core/paint/BoxPainter.h » ('j') | Source/core/rendering/RenderBox.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698