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

Issue 37803003: Move GraphicsTypes* and ColorSpace to Source/platform (Closed)

Created:
7 years, 2 months ago by rwlbuis
Modified:
7 years, 2 months ago
CC:
blink-reviews, jamesr, zoltan1, dsinclair, eae+blinkwatch, leviw+renderwatch, danakj, feature-media-reviews_chromium.org, dglazkov+blink, Rik, apavlov+blink_chromium.org, adamk+blink_chromium.org, jchaffraix+rendering, darktears, pdr, f(malita), aandrey+blink_chromium.org, pdr.
Base URL:
https://chromium.googlesource.com/chromium/blink.git@master
Visibility:
Public.

Description

Move GraphicsTypes* and ColorSpace to Source/platform BUG=297477 Committed: https://src.chromium.org/viewvc/blink?view=rev&revision=160494

Patch Set 1 #

Total comments: 14

Patch Set 2 : remove exports and try to clean up the includes #

Patch Set 3 : I misread Adam's comment, the exports are needed in one place #

Unified diffs Side-by-side diffs Delta from patch set Stats (+51 lines, -510 lines) Patch
M Source/core/core.gypi View 1 2 1 chunk +0 lines, -1 line 0 comments Download
M Source/core/css/CSSPrimitiveValueMappings.h View 2 chunks +1 line, -1 line 0 comments Download
M Source/core/html/HTMLImageElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/html/canvas/ANGLEInstancedArrays.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/html/canvas/CanvasRenderingContext2D.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/html/canvas/OESVertexArrayObject.h View 1 chunk +1 line, -1 line 0 comments Download
D Source/core/platform/graphics/ColorSpace.h View 1 chunk +0 lines, -39 lines 0 comments Download
M Source/core/platform/graphics/Extensions3D.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/platform/graphics/Gradient.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/platform/graphics/GraphicsContext3D.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/platform/graphics/GraphicsContextState.h View 1 chunk +1 line, -1 line 0 comments Download
D Source/core/platform/graphics/GraphicsTypes.h View 1 chunk +0 lines, -143 lines 0 comments Download
D Source/core/platform/graphics/GraphicsTypes.cpp View 1 chunk +0 lines, -226 lines 0 comments Download
D Source/core/platform/graphics/GraphicsTypes3D.h View 1 chunk +0 lines, -53 lines 0 comments Download
M Source/core/platform/graphics/Image.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/platform/graphics/Image.cpp View 2 chunks +1 line, -1 line 0 comments Download
M Source/core/platform/graphics/ImageBuffer.h View 1 2 1 chunk +3 lines, -3 lines 0 comments Download
M Source/core/platform/graphics/MediaPlayer.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/platform/graphics/StrokeData.h View 1 1 chunk +1 line, -3 lines 0 comments Download
M Source/core/platform/graphics/filters/FilterEffect.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/platform/graphics/filters/SkiaImageFilterBuilder.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/platform/graphics/filters/custom/CustomFilterMesh.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/platform/graphics/filters/custom/CustomFilterProgramInfo.h View 1 1 chunk +1 line, -2 lines 0 comments Download
M Source/core/platform/graphics/filters/custom/CustomFilterRenderer.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/platform/graphics/filters/custom/FECustomFilter.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/platform/graphics/gpu/DrawingBuffer.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/platform/graphics/skia/NativeImageSkia.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/platform/graphics/skia/SkiaUtils.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/rendering/FilterEffectRenderer.cpp View 2 chunks +1 line, -1 line 0 comments Download
M Source/core/rendering/style/FillLayer.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/rendering/style/RenderStyle.h View 2 chunks +1 line, -1 line 0 comments Download
M Source/core/rendering/style/SVGRenderStyle.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/rendering/svg/SVGRenderTreeAsText.cpp View 1 2 chunks +1 line, -1 line 0 comments Download
M Source/platform/blink_platform.gypi View 1 2 1 chunk +4 lines, -0 lines 0 comments Download
A + Source/platform/graphics/ColorSpace.h View 1 1 chunk +2 lines, -0 lines 0 comments Download
A + Source/platform/graphics/GraphicsTypes.h View 1 2 2 chunks +11 lines, -11 lines 0 comments Download
A + Source/platform/graphics/GraphicsTypes.cpp View 1 chunk +1 line, -1 line 0 comments Download
A + Source/platform/graphics/GraphicsTypes3D.h View 1 chunk +3 lines, -3 lines 0 comments Download

Messages

Total messages: 11 (0 generated)
rwlbuis
Move some useful graphics files. This is probably useful to get out of the way ...
7 years, 2 months ago (2013-10-23 21:32:13 UTC) #1
abarth-chromium
LGTM w/ comments beloe. https://codereview.chromium.org/37803003/diff/1/Source/core/platform/graphics/StrokeData.h File Source/core/platform/graphics/StrokeData.h (right): https://codereview.chromium.org/37803003/diff/1/Source/core/platform/graphics/StrokeData.h#newcode37 Source/core/platform/graphics/StrokeData.h:37: There's no need for these ...
7 years, 2 months ago (2013-10-24 14:13:11 UTC) #2
rwlbuis
On 2013/10/24 14:13:11, abarth wrote: > LGTM w/ comments beloe. Thanks, will fix. What you ...
7 years, 2 months ago (2013-10-24 14:30:19 UTC) #3
abarth-chromium
On 2013/10/24 14:30:19, rwlbuis wrote: > What you said about the enum thing makes sense, ...
7 years, 2 months ago (2013-10-24 14:39:57 UTC) #4
Stephen Chennney
On 2013/10/24 14:39:57, abarth wrote: > On 2013/10/24 14:30:19, rwlbuis wrote: > > What you ...
7 years, 2 months ago (2013-10-24 15:02:07 UTC) #5
abarth-chromium
Thanks!
7 years, 2 months ago (2013-10-24 15:19:45 UTC) #6
rwlbuis
Comments should be addressed to now. https://codereview.chromium.org/37803003/diff/1/Source/core/platform/graphics/StrokeData.h File Source/core/platform/graphics/StrokeData.h (right): https://codereview.chromium.org/37803003/diff/1/Source/core/platform/graphics/StrokeData.h#newcode37 Source/core/platform/graphics/StrokeData.h:37: On 2013/10/24 14:13:12, ...
7 years, 2 months ago (2013-10-24 17:04:49 UTC) #7
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/rob.buis@samsung.com/37803003/140001
7 years, 2 months ago (2013-10-24 18:53:10 UTC) #8
commit-bot: I haz the power
Sorry for I got bad news for ya. Compile failed with a clobber build on ...
7 years, 2 months ago (2013-10-24 19:29:55 UTC) #9
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/rob.buis@samsung.com/37803003/310001
7 years, 2 months ago (2013-10-24 19:41:53 UTC) #10
commit-bot: I haz the power
7 years, 2 months ago (2013-10-24 20:57:38 UTC) #11
Message was sent while issue was closed.
Change committed as 160494

Powered by Google App Engine
This is Rietveld 408576698