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

Issue 2290903002: Change (Pass)RefPtr<SkXxx> into sk_sp<SkXxx>. (Closed)

Created:
4 years, 3 months ago by Łukasz Anforowicz
Modified:
4 years, 3 months ago
CC:
chromium-reviews, blink-reviews-html_chromium.org, blink-reviews-platform-graphics_chromium.org, dshwang, eae+blinkwatch, fs, apavlov+blink_chromium.org, kinuko+watch, kouhei+svg_chromium.org, rwlbuis, krit, drott+blinkwatch_chromium.org, blink-reviews-css, szager+layoutwatch_chromium.org, Justin Novosad, dglazkov+blink, Rik, jchaffraix+rendering, blink-reviews-paint_chromium.org, blink-reviews, gyuyoung2, pdr+svgwatchlist_chromium.org, ajuma+watch_chromium.org, zoltan1, blink-reviews-layout_chromium.org, pdr+graphicswatchlist_chromium.org, darktears, piman+watch_chromium.org, danakj+watch_chromium.org, ajuma+watch-canvas_chromium.org, pdr+renderingwatchlist_chromium.org, leviw+renderwatch, slimming-paint-reviews_chromium.org, blink-layers+watch_chromium.org, f(malita), Bugs Nash, danakj
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

Change (Pass)RefPtr<SkXxx> into sk_sp<SkXxx>. This CL is motivated by 2 things: 1. General desire to use sk_sp<...> instead of RefPtr<...> (i.e. as given in a comment next to the fromSkSp/toSkSp functions) 2. Desire to allow rename_to_chrome_style tool to rename WTF::RefCountedBase::ref to Ref (while not renaming |ref| to |Ref| in Skia). This CL contains the following broadly applied changes: - s/\(Pass\|\)RefPtr<Sk/sk_sp<Sk/g - Repeat the above for |const Sk| (i.e. const-qualified template parameter) - Repeat the above for |WTF::RefPtr<Sk| (i.e. explicit namespace qualifier) - Add #include "third_party/skia/include/core/SkRefCnt.h" if appropriate - Replace calls to RefPtr<T>::clear() with calls to sk_sp<T>::reset() - Replace calls to PassRefPtr<T>::release() with calls to std::move(x) - Replace calls to adoptRef with calls to sk_sp<T>(T*) constructor or calls to sk_sp<T>::reset(T*) - both will adopt a ref-count - Remove (now unnecessary) fromSkSp and toSkSp calls - Add more std::move calls during a self review This CL contains the following one-off changes: - Tweak platform/CrossThreadCopier.h to mark sk_sp<SkRefCnt> as thread-safe - Remove fromSkSp and toSkSp definitions from platform/graphics/skia/SkiaUtils.h BUG=641014 CQ_INCLUDE_TRYBOTS=master.tryserver.chromium.linux:linux_layout_tests_slimming_paint_v2 Committed: https://crrev.com/69969af74bfff920f5fdcc2aa547ea4af2d477d2 Cr-Commit-Position: refs/heads/master@{#416323}

Patch Set 1 #

Patch Set 2 : Rebasing... #

Patch Set 3 : Rebasing + fixing Mac and Win platforms. #

Patch Set 4 : Fixing one more win issue. #

Patch Set 5 : Fixing silly typo. #

Patch Set 6 : Fix one more windows issue. #

Patch Set 7 : Self-review. #

Total comments: 67

Patch Set 8 : Addressed code review feedback from fmalita@. #

Patch Set 9 : Rebasing... #

Patch Set 10 : Fixing issues caused by rebasing. #

Patch Set 11 : Rebasing... #

Unified diffs Side-by-side diffs Delta from patch set Stats (+491 lines, -501 lines) Patch
M third_party/WebKit/Source/core/css/CSSFontFaceSourceTest.cpp View 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/frame/ImageBitmap.h View 2 chunks +2 lines, -1 line 0 comments Download
M third_party/WebKit/Source/core/frame/ImageBitmap.cpp View 1 2 3 4 5 6 7 18 chunks +32 lines, -32 lines 0 comments Download
M third_party/WebKit/Source/core/frame/ImageBitmapTest.cpp View 2 chunks +3 lines, -3 lines 0 comments Download
M third_party/WebKit/Source/core/frame/LocalFrame.cpp View 1 2 3 4 5 6 7 8 9 10 1 chunk +4 lines, -4 lines 0 comments Download
M third_party/WebKit/Source/core/html/HTMLCanvasElement.cpp View 1 2 3 4 5 6 7 8 9 10 6 chunks +6 lines, -6 lines 0 comments Download
M third_party/WebKit/Source/core/html/canvas/CanvasDrawListener.h View 1 2 chunks +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/core/html/canvas/CanvasDrawListener.cpp View 1 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/imagebitmap/ImageBitmapFactories.h View 2 chunks +2 lines, -1 line 0 comments Download
M third_party/WebKit/Source/core/imagebitmap/ImageBitmapFactories.cpp View 2 chunks +4 lines, -4 lines 0 comments Download
M third_party/WebKit/Source/core/layout/ImageQualityControllerTest.cpp View 1 3 chunks +3 lines, -3 lines 0 comments Download
M third_party/WebKit/Source/core/layout/svg/LayoutSVGResourceClipper.h View 1 2 3 4 5 6 7 8 9 10 3 chunks +3 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/core/layout/svg/LayoutSVGResourceClipper.cpp View 1 2 3 4 5 6 7 8 9 10 2 chunks +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/core/layout/svg/LayoutSVGResourceMasker.h View 2 chunks +3 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/core/layout/svg/LayoutSVGResourceMasker.cpp View 2 chunks +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/core/layout/svg/LayoutSVGResourcePattern.h View 2 chunks +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/core/layout/svg/LayoutSVGResourcePattern.cpp View 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/paint/BoxReflectionUtils.cpp View 1 2 2 chunks +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/core/paint/SVGClipPainter.cpp View 1 2 3 4 5 6 2 chunks +2 lines, -3 lines 0 comments Download
M third_party/WebKit/Source/core/paint/SVGFilterPainter.cpp View 1 2 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/paint/SVGInlineTextBoxPainter.cpp View 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/paint/SVGMaskPainter.cpp View 1 2 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/svg/graphics/SVGImage.h View 3 chunks +3 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/core/svg/graphics/SVGImage.cpp View 1 2 3 4 5 6 7 8 9 10 4 chunks +7 lines, -7 lines 0 comments Download
M third_party/WebKit/Source/core/svg/graphics/SVGImageForContainer.h View 2 chunks +2 lines, -1 line 0 comments Download
M third_party/WebKit/Source/core/svg/graphics/SVGImageForContainer.cpp View 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/svg/graphics/SVGImageTest.cpp View 1 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/svg/graphics/filters/SVGFEImage.cpp View 2 chunks +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/modules/canvas2d/CanvasRenderingContext2DState.h View 2 chunks +4 lines, -3 lines 0 comments Download
M third_party/WebKit/Source/modules/canvas2d/CanvasRenderingContext2DState.cpp View 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/modules/canvas2d/CanvasRenderingContext2DTest.cpp View 1 chunk +1 line, -2 lines 0 comments Download
M third_party/WebKit/Source/modules/canvas2d/CanvasRenderingContext2DUsageTrackingTest.cpp View 1 chunk +1 line, -2 lines 0 comments Download
M third_party/WebKit/Source/modules/imagebitmap/ImageBitmapRenderingContext.cpp View 1 2 3 4 5 6 7 2 chunks +3 lines, -3 lines 0 comments Download
M third_party/WebKit/Source/modules/mediacapturefromelement/OnRequestCanvasDrawListener.h View 1 2 chunks +2 lines, -1 line 0 comments Download
M third_party/WebKit/Source/modules/mediacapturefromelement/OnRequestCanvasDrawListener.cpp View 1 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/modules/mediacapturefromelement/TimedCanvasDrawListener.h View 1 2 chunks +2 lines, -1 line 0 comments Download
M third_party/WebKit/Source/modules/mediacapturefromelement/TimedCanvasDrawListener.cpp View 1 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/modules/offscreencanvas2d/OffscreenCanvasRenderingContext2D.cpp View 1 2 3 4 5 6 7 8 9 2 chunks +4 lines, -4 lines 0 comments Download
M third_party/WebKit/Source/modules/webgl/WebGLRenderingContextBase.cpp View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/platform/CrossThreadCopier.h View 1 2 3 4 5 6 7 8 9 10 2 chunks +8 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/platform/DragImage.h View 2 chunks +2 lines, -1 line 0 comments Download
M third_party/WebKit/Source/platform/DragImage.cpp View 1 2 3 4 5 6 7 4 chunks +6 lines, -6 lines 0 comments Download
M third_party/WebKit/Source/platform/DragImageTest.cpp View 7 chunks +7 lines, -7 lines 0 comments Download
M third_party/WebKit/Source/platform/exported/WebImage.cpp View 1 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/platform/fonts/Font.cpp View 4 chunks +4 lines, -4 lines 0 comments Download
M third_party/WebKit/Source/platform/fonts/FontCache.h View 1 5 chunks +5 lines, -5 lines 0 comments Download
M third_party/WebKit/Source/platform/fonts/FontCache.cpp View 1 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/platform/fonts/FontCustomPlatformData.h View 2 chunks +3 lines, -3 lines 0 comments Download
M third_party/WebKit/Source/platform/fonts/FontCustomPlatformData.cpp View 2 chunks +4 lines, -4 lines 0 comments Download
M third_party/WebKit/Source/platform/fonts/FontPlatformData.h View 3 chunks +3 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/platform/fonts/FontPlatformData.cpp View 1 2 3 4 5 6 7 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/platform/fonts/TextBlob.h View 1 2 3 4 5 6 7 1 chunk +3 lines, -4 lines 0 comments Download
M third_party/WebKit/Source/platform/fonts/WebFontDecoder.h View 2 chunks +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/platform/fonts/WebFontDecoder.cpp View 2 chunks +4 lines, -4 lines 0 comments Download
M third_party/WebKit/Source/platform/fonts/android/FontCacheAndroid.cpp View 1 2 chunks +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/platform/fonts/linux/FontCacheLinux.cpp View 1 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/platform/fonts/linux/FontPlatformDataLinux.cpp View 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/platform/fonts/mac/FontPlatformDataMac.mm View 1 2 4 chunks +4 lines, -4 lines 0 comments Download
M third_party/WebKit/Source/platform/fonts/skia/FontCacheSkia.cpp View 1 2 3 4 5 6 6 chunks +10 lines, -10 lines 0 comments Download
M third_party/WebKit/Source/platform/fonts/win/FontCacheSkiaWin.cpp View 1 2 3 4 5 6 7 4 chunks +7 lines, -7 lines 0 comments Download
M third_party/WebKit/Source/platform/fonts/win/FontFallbackWin.cpp View 1 chunk +2 lines, -5 lines 0 comments Download
M third_party/WebKit/Source/platform/fonts/win/FontPlatformDataWin.cpp View 1 2 3 4 5 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/platform/graphics/AcceleratedStaticBitmapImage.h View 2 chunks +6 lines, -5 lines 0 comments Download
M third_party/WebKit/Source/platform/graphics/AcceleratedStaticBitmapImage.cpp View 1 2 3 4 5 6 7 3 chunks +8 lines, -8 lines 0 comments Download
M third_party/WebKit/Source/platform/graphics/BitmapImage.h View 4 chunks +5 lines, -4 lines 0 comments Download
M third_party/WebKit/Source/platform/graphics/BitmapImage.cpp View 1 2 3 4 5 6 7 12 chunks +13 lines, -13 lines 0 comments Download
M third_party/WebKit/Source/platform/graphics/BitmapImageTest.cpp View 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/platform/graphics/BoxReflection.h View 1 2 3 4 5 6 7 3 chunks +4 lines, -5 lines 0 comments Download
M third_party/WebKit/Source/platform/graphics/Canvas2DImageBufferSurface.h View 2 chunks +2 lines, -1 line 0 comments Download
M third_party/WebKit/Source/platform/graphics/Canvas2DLayerBridge.h View 4 chunks +6 lines, -5 lines 0 comments Download
M third_party/WebKit/Source/platform/graphics/Canvas2DLayerBridge.cpp View 1 2 3 4 5 6 7 17 chunks +23 lines, -20 lines 0 comments Download
M third_party/WebKit/Source/platform/graphics/Canvas2DLayerBridgeTest.cpp View 5 chunks +6 lines, -6 lines 0 comments Download
M third_party/WebKit/Source/platform/graphics/ColorSpace.h View 2 chunks +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/platform/graphics/ColorSpace.cpp View 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/platform/graphics/DeferredImageDecoder.h View 3 chunks +3 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/platform/graphics/DeferredImageDecoder.cpp View 4 chunks +8 lines, -8 lines 0 comments Download
M third_party/WebKit/Source/platform/graphics/DeferredImageDecoderTest.cpp View 7 chunks +7 lines, -7 lines 0 comments Download
M third_party/WebKit/Source/platform/graphics/DeferredImageDecoderTestWoPlatform.cpp View 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/platform/graphics/DrawLooperBuilder.h View 2 chunks +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/platform/graphics/DrawLooperBuilder.cpp View 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/platform/graphics/GeneratedImage.h View 2 chunks +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/platform/graphics/GeneratedImage.cpp View 2 chunks +3 lines, -3 lines 0 comments Download
M third_party/WebKit/Source/platform/graphics/GraphicsContext.h View 1 4 chunks +4 lines, -3 lines 0 comments Download
M third_party/WebKit/Source/platform/graphics/GraphicsContext.cpp View 1 2 3 4 5 6 7 6 chunks +12 lines, -12 lines 0 comments Download
M third_party/WebKit/Source/platform/graphics/GraphicsContextState.h View 3 chunks +3 lines, -3 lines 0 comments Download
M third_party/WebKit/Source/platform/graphics/GraphicsContextState.cpp View 2 chunks +4 lines, -4 lines 0 comments Download
M third_party/WebKit/Source/platform/graphics/GraphicsContextTest.cpp View 2 chunks +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/platform/graphics/GraphicsLayer.h View 1 2 3 4 5 6 7 8 9 10 2 chunks +2 lines, -1 line 0 comments Download
M third_party/WebKit/Source/platform/graphics/GraphicsLayer.cpp View 1 2 3 4 5 6 7 8 9 10 5 chunks +7 lines, -7 lines 0 comments Download
M third_party/WebKit/Source/platform/graphics/Image.h View 2 chunks +2 lines, -1 line 0 comments Download
M third_party/WebKit/Source/platform/graphics/Image.cpp View 3 chunks +4 lines, -4 lines 0 comments Download
M third_party/WebKit/Source/platform/graphics/ImageBuffer.h View 2 chunks +3 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/platform/graphics/ImageBuffer.cpp View 1 2 3 4 5 6 7 4 chunks +5 lines, -5 lines 0 comments Download
M third_party/WebKit/Source/platform/graphics/ImageBufferSurface.h View 3 chunks +3 lines, -3 lines 0 comments Download
M third_party/WebKit/Source/platform/graphics/ImageBufferSurface.cpp View 2 chunks +3 lines, -3 lines 0 comments Download
M third_party/WebKit/Source/platform/graphics/ImageFrameGenerator.cpp View 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/platform/graphics/ImageLayerChromiumTest.cpp View 3 chunks +3 lines, -3 lines 0 comments Download
M third_party/WebKit/Source/platform/graphics/ImagePattern.cpp View 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/platform/graphics/ImageSource.h View 2 chunks +2 lines, -1 line 0 comments Download
M third_party/WebKit/Source/platform/graphics/ImageSource.cpp View 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/platform/graphics/LoggingCanvas.cpp View 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/platform/graphics/PaintGeneratedImage.h View 1 2 3 4 5 6 7 3 chunks +6 lines, -5 lines 0 comments Download
M third_party/WebKit/Source/platform/graphics/Pattern.h View 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/platform/graphics/Pattern.cpp View 1 2 3 4 5 6 7 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/platform/graphics/PicturePattern.h View 2 chunks +3 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/platform/graphics/PicturePattern.cpp View 1 2 3 4 5 6 7 1 chunk +4 lines, -4 lines 0 comments Download
M third_party/WebKit/Source/platform/graphics/PictureSnapshot.h View 1 3 chunks +3 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/platform/graphics/PictureSnapshot.cpp View 1 2 3 4 5 6 7 4 chunks +5 lines, -5 lines 0 comments Download
M third_party/WebKit/Source/platform/graphics/RecordingImageBufferSurface.h View 4 chunks +4 lines, -4 lines 0 comments Download
M third_party/WebKit/Source/platform/graphics/RecordingImageBufferSurface.cpp View 7 chunks +8 lines, -8 lines 0 comments Download
M third_party/WebKit/Source/platform/graphics/RecordingImageBufferSurfaceTest.cpp View 1 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/platform/graphics/StaticBitmapImage.h View 3 chunks +5 lines, -4 lines 0 comments Download
M third_party/WebKit/Source/platform/graphics/StaticBitmapImage.cpp View 1 2 3 4 5 6 7 2 chunks +5 lines, -5 lines 0 comments Download
M third_party/WebKit/Source/platform/graphics/UnacceleratedImageBufferSurface.h View 2 chunks +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/platform/graphics/UnacceleratedImageBufferSurface.cpp View 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/platform/graphics/filters/SkiaImageFilterBuilder.cpp View 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/platform/graphics/gpu/AcceleratedImageBufferSurface.h View 2 chunks +2 lines, -1 line 0 comments Download
M third_party/WebKit/Source/platform/graphics/gpu/AcceleratedImageBufferSurface.cpp View 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/platform/graphics/gpu/DrawingBuffer.cpp View 2 chunks +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/platform/graphics/gpu/WebGLImageConversion.cpp View 1 2 3 4 5 6 7 8 9 10 3 chunks +3 lines, -3 lines 0 comments Download
M third_party/WebKit/Source/platform/graphics/paint/DisplayItemListTest.cpp View 1 2 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/platform/graphics/paint/DrawingDisplayItem.h View 1 2 3 4 5 6 7 8 9 10 2 chunks +3 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/platform/graphics/paint/DrawingDisplayItem.cpp View 1 2 3 4 5 6 7 8 9 10 2 chunks +3 lines, -3 lines 0 comments Download
M third_party/WebKit/Source/platform/graphics/paint/PaintController.h View 1 2 3 4 5 6 7 8 9 10 2 chunks +2 lines, -1 line 0 comments Download
M third_party/WebKit/Source/platform/graphics/paint/PaintController.cpp View 1 2 3 4 5 6 7 8 9 10 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/platform/graphics/paint/PaintControllerTest.cpp View 1 2 3 4 5 6 7 8 9 10 5 chunks +12 lines, -12 lines 0 comments Download
M third_party/WebKit/Source/platform/graphics/paint/SkPictureBuilder.h View 2 chunks +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/platform/graphics/paint/SkPictureBuilder.cpp View 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/platform/graphics/skia/ImagePixelLocker.h View 2 chunks +3 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/platform/graphics/skia/ImagePixelLocker.cpp View 1 2 3 4 5 6 7 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/platform/graphics/skia/SkiaUtils.h View 2 chunks +7 lines, -50 lines 0 comments Download
M third_party/WebKit/Source/platform/image-decoders/FastSharedBufferReaderTest.cpp View 2 chunks +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/platform/image-decoders/SegmentReader.h View 2 chunks +2 lines, -1 line 0 comments Download
M third_party/WebKit/Source/platform/image-decoders/SegmentReader.cpp View 1 2 3 4 5 6 7 3 chunks +6 lines, -6 lines 0 comments Download
M third_party/WebKit/Source/platform/testing/TestPaintArtifact.cpp View 1 2 1 chunk +3 lines, -3 lines 0 comments Download
M third_party/WebKit/Source/platform/text/TextRun.h View 2 chunks +2 lines, -1 line 0 comments Download
M third_party/WebKit/Source/platform/transforms/SkewTransformOperation.h View 1 chunk +1 line, -0 lines 0 comments Download
M third_party/WebKit/Source/web/linux/WebFontRendering.cpp View 1 2 3 4 5 6 7 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/web/win/WebFontRendering.cpp View 1 2 3 4 5 6 7 1 chunk +1 line, -1 line 0 comments Download

Messages

Total messages: 88 (60 generated)
Łukasz Anforowicz
fmalita@, could you please take a look?
4 years, 3 months ago (2016-08-31 17:08:44 UTC) #27
haraken
I support this change from the perspective of Blink's architecture.
4 years, 3 months ago (2016-08-31 17:28:01 UTC) #30
Justin Novosad
sweet! \o/ lgtm
4 years, 3 months ago (2016-08-31 17:31:15 UTC) #31
Stephen Chennney
Not LGTM, at least not yet. I recall an explicit conversation about ref counting Skia ...
4 years, 3 months ago (2016-08-31 17:35:18 UTC) #33
dcheng
On 2016/08/31 17:35:18, Stephen Chennney wrote: > Not LGTM, at least not yet. > > ...
4 years, 3 months ago (2016-08-31 17:40:08 UTC) #34
haraken
On 2016/08/31 17:40:08, dcheng wrote: > On 2016/08/31 17:35:18, Stephen Chennney wrote: > > Not ...
4 years, 3 months ago (2016-08-31 17:53:36 UTC) #35
jbroman
On 2016/08/31 at 17:35:18, schenney wrote: > Not LGTM, at least not yet. > > ...
4 years, 3 months ago (2016-08-31 18:10:19 UTC) #36
Stephen Chennney
On 2016/08/31 17:53:36, haraken wrote: > On 2016/08/31 17:40:08, dcheng wrote: > > On 2016/08/31 ...
4 years, 3 months ago (2016-08-31 18:15:30 UTC) #37
Łukasz Anforowicz
On 2016/08/31 18:15:30, Stephen Chennney wrote: > On 2016/08/31 17:53:36, haraken wrote: > > On ...
4 years, 3 months ago (2016-08-31 19:08:10 UTC) #40
Stephen Chennney
On 2016/08/31 19:08:10, Łukasz Anforowicz wrote: > On 2016/08/31 18:15:30, Stephen Chennney wrote: > > ...
4 years, 3 months ago (2016-08-31 20:32:31 UTC) #41
Łukasz Anforowicz
On 2016/08/31 20:32:31, Stephen Chennney wrote: > On 2016/08/31 19:08:10, Łukasz Anforowicz wrote: > > ...
4 years, 3 months ago (2016-08-31 20:58:17 UTC) #42
pdr.
On 2016/08/31 at 20:32:31, schenney wrote: > On 2016/08/31 19:08:10, Łukasz Anforowicz wrote: One of ...
4 years, 3 months ago (2016-08-31 21:00:38 UTC) #43
dcheng
On 2016/08/31 21:00:38, pdr. wrote: > On 2016/08/31 at 20:32:31, schenney wrote: > > On ...
4 years, 3 months ago (2016-08-31 21:36:59 UTC) #44
pdr.
On 2016/08/31 at 21:36:59, dcheng wrote: > On 2016/08/31 21:00:38, pdr. wrote: > > On ...
4 years, 3 months ago (2016-08-31 21:44:21 UTC) #45
f(malita)
Initially, we tried not to push sk_sps too aggressively in Blink, mostly for the reasons ...
4 years, 3 months ago (2016-09-01 03:55:39 UTC) #46
Stephen Chennney
Thanks for all the research and the back stories. I'm on board so feel free ...
4 years, 3 months ago (2016-09-01 13:16:17 UTC) #47
Łukasz Anforowicz
fmalita@, thanks for reviewing and finding extra opportunities to get rid of .get() and/or to ...
4 years, 3 months ago (2016-09-01 20:50:59 UTC) #58
f(malita)
Thanks, LGTM. https://codereview.chromium.org/2290903002/diff/120001/third_party/WebKit/Source/core/html/HTMLCanvasElement.cpp File third_party/WebKit/Source/core/html/HTMLCanvasElement.cpp (right): https://codereview.chromium.org/2290903002/diff/120001/third_party/WebKit/Source/core/html/HTMLCanvasElement.cpp#newcode464 third_party/WebKit/Source/core/html/HTMLCanvasElement.cpp:464: listener->sendNewFrame(image); On 2016/09/01 20:50:57, Łukasz Anforowicz wrote: ...
4 years, 3 months ago (2016-09-01 21:03:43 UTC) #59
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2290903002/180001
4 years, 3 months ago (2016-09-01 21:24:12 UTC) #64
commit-bot: I haz the power
Try jobs failed on following builders: chromium_presubmit on master.tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/chromium_presubmit/builds/251566)
4 years, 3 months ago (2016-09-01 21:31:07 UTC) #66
Łukasz Anforowicz
+zmo@ for third_party/WebKit/Source/modules/webgl/OWNERS review +mcasas@ for third_party/WebKit/Source/modules/mediacapturefromelement/OWNERS review
4 years, 3 months ago (2016-09-01 21:45:56 UTC) #68
Zhenyao Mo
On 2016/09/01 21:45:56, Łukasz Anforowicz wrote: > +zmo@ for third_party/WebKit/Source/modules/webgl/OWNERS review > +mcasas@ for third_party/WebKit/Source/modules/mediacapturefromelement/OWNERS ...
4 years, 3 months ago (2016-09-02 00:38:10 UTC) #69
mcasas
On 2016/09/02 00:38:10, Zhenyao Mo wrote: > On 2016/09/01 21:45:56, Łukasz Anforowicz wrote: > > ...
4 years, 3 months ago (2016-09-02 01:52:10 UTC) #70
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2290903002/180001
4 years, 3 months ago (2016-09-02 17:11:06 UTC) #76
commit-bot: I haz the power
Try jobs failed on following builders: chromium_presubmit on master.tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/chromium_presubmit/builds/252231)
4 years, 3 months ago (2016-09-02 17:19:09 UTC) #78
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2290903002/200001
4 years, 3 months ago (2016-09-02 17:55:13 UTC) #84
commit-bot: I haz the power
Committed patchset #11 (id:200001)
4 years, 3 months ago (2016-09-02 19:51:00 UTC) #86
commit-bot: I haz the power
4 years, 3 months ago (2016-09-02 19:53:08 UTC) #88
Message was sent while issue was closed.
Patchset 11 (id:??) landed as
https://crrev.com/69969af74bfff920f5fdcc2aa547ea4af2d477d2
Cr-Commit-Position: refs/heads/master@{#416323}

Powered by Google App Engine
This is Rietveld 408576698