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

Issue 1393083003: Implement interest rects for synchronized paint. (Closed)

Created:
5 years, 2 months ago by chrishtr
Modified:
5 years, 2 months ago
Reviewers:
ajuma, Xianzhu, wkorman
CC:
blink-layers+watch_chromium.org, blink-reviews, blink-reviews-layout_chromium.org, blink-reviews-platform-graphics_chromium.org, Rik, chromium-reviews, danakj, dshwang, drott+blinkwatch_chromium.org, krit, eae+blinkwatch, f(malita), jbroman, jchaffraix+rendering, Justin Novosad, leviw+renderwatch, pdr+graphicswatchlist_chromium.org, pdr+renderingwatchlist_chromium.org, rwlbuis, Stephen Chennney, szager+layoutwatch_chromium.org, zoltan1
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

Implement interest rects for synchronized paint. BUG=536999 Committed: https://crrev.com/70a750f5e7427c3bed60e7c7adb231f68149f1a1 Cr-Commit-Position: refs/heads/master@{#353572}

Patch Set 1 #

Patch Set 2 : #

Patch Set 3 : #

Total comments: 1

Patch Set 4 : #

Total comments: 16

Patch Set 5 : #

Patch Set 6 : #

Patch Set 7 : #

Patch Set 8 : #

Total comments: 4

Patch Set 9 : #

Patch Set 10 : #

Patch Set 11 : #

Unified diffs Side-by-side diffs Delta from patch set Stats (+328 lines, -26 lines) Patch
M third_party/WebKit/Source/core/core.gypi View 1 2 3 4 5 6 7 8 1 chunk +1 line, -0 lines 0 comments Download
M third_party/WebKit/Source/core/frame/FrameView.cpp View 1 2 3 4 5 6 7 8 1 chunk +11 lines, -4 lines 0 comments Download
M third_party/WebKit/Source/core/frame/VisualViewport.h View 1 chunk +1 line, -0 lines 0 comments Download
M third_party/WebKit/Source/core/frame/VisualViewport.cpp View 1 chunk +4 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/core/layout/compositing/CompositedLayerMapping.h View 1 2 3 4 5 6 7 8 9 10 4 chunks +8 lines, -1 line 0 comments Download
M third_party/WebKit/Source/core/layout/compositing/CompositedLayerMapping.cpp View 1 2 3 3 chunks +57 lines, -10 lines 0 comments Download
A third_party/WebKit/Source/core/layout/compositing/CompositedLayerMappingTest.cpp View 1 2 3 4 5 6 7 8 1 chunk +206 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/core/layout/compositing/PaintLayerCompositor.h View 1 chunk +1 line, -0 lines 0 comments Download
M third_party/WebKit/Source/core/layout/compositing/PaintLayerCompositor.cpp View 1 chunk +5 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/platform/geometry/IntRect.h View 1 2 chunks +7 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/platform/graphics/ContentLayerDelegate.h View 1 2 3 4 1 chunk +2 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/platform/graphics/GraphicsLayer.h View 2 chunks +1 line, -3 lines 0 comments Download
M third_party/WebKit/Source/platform/graphics/GraphicsLayer.cpp View 2 chunks +12 lines, -7 lines 0 comments Download
M third_party/WebKit/Source/platform/graphics/GraphicsLayerClient.h View 1 2 3 4 1 chunk +2 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/platform/graphics/GraphicsLayerTest.cpp View 1 chunk +1 line, -0 lines 0 comments Download
M third_party/WebKit/Source/platform/graphics/ImageLayerChromiumTest.cpp View 1 chunk +2 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/web/PageOverlay.h View 1 chunk +1 line, -0 lines 0 comments Download
M third_party/WebKit/Source/web/PageOverlay.cpp View 1 chunk +6 lines, -1 line 0 comments Download

Messages

Total messages: 24 (10 generated)
chrishtr
Ali please review computeInterestRect for correctness. Note that I still have not implemented the equivalent ...
5 years, 2 months ago (2015-10-09 19:10:29 UTC) #2
wkorman
Reading to learn, minor self-edifying inquiries. https://codereview.chromium.org/1393083003/diff/60001/third_party/WebKit/Source/core/frame/FrameView.cpp File third_party/WebKit/Source/core/frame/FrameView.cpp (right): https://codereview.chromium.org/1393083003/diff/60001/third_party/WebKit/Source/core/frame/FrameView.cpp#newcode2477 third_party/WebKit/Source/core/frame/FrameView.cpp:2477: if (IntRect(interestRect) != ...
5 years, 2 months ago (2015-10-09 19:46:32 UTC) #4
chrishtr
https://codereview.chromium.org/1393083003/diff/60001/third_party/WebKit/Source/core/frame/FrameView.cpp File third_party/WebKit/Source/core/frame/FrameView.cpp (right): https://codereview.chromium.org/1393083003/diff/60001/third_party/WebKit/Source/core/frame/FrameView.cpp#newcode2477 third_party/WebKit/Source/core/frame/FrameView.cpp:2477: if (IntRect(interestRect) != LayoutRect::infiniteIntRect()) { On 2015/10/09 at 19:46:31, ...
5 years, 2 months ago (2015-10-09 20:54:52 UTC) #5
ajuma
https://codereview.chromium.org/1393083003/diff/60001/third_party/WebKit/Source/core/layout/compositing/CompositedLayerMapping.cpp File third_party/WebKit/Source/core/layout/compositing/CompositedLayerMapping.cpp (right): https://codereview.chromium.org/1393083003/diff/60001/third_party/WebKit/Source/core/layout/compositing/CompositedLayerMapping.cpp#newcode2198 third_party/WebKit/Source/core/layout/compositing/CompositedLayerMapping.cpp:2198: } Do you have a sense of how efficient ...
5 years, 2 months ago (2015-10-09 20:55:27 UTC) #6
chrishtr
https://codereview.chromium.org/1393083003/diff/60001/third_party/WebKit/Source/core/layout/compositing/CompositedLayerMapping.cpp File third_party/WebKit/Source/core/layout/compositing/CompositedLayerMapping.cpp (right): https://codereview.chromium.org/1393083003/diff/60001/third_party/WebKit/Source/core/layout/compositing/CompositedLayerMapping.cpp#newcode2198 third_party/WebKit/Source/core/layout/compositing/CompositedLayerMapping.cpp:2198: } On 2015/10/09 at 20:55:27, ajuma wrote: > Do ...
5 years, 2 months ago (2015-10-09 21:35:46 UTC) #7
ajuma
lgtm https://codereview.chromium.org/1393083003/diff/140001/third_party/WebKit/Source/core/layout/LayoutScrollbar.cpp File third_party/WebKit/Source/core/layout/LayoutScrollbar.cpp (right): https://codereview.chromium.org/1393083003/diff/140001/third_party/WebKit/Source/core/layout/LayoutScrollbar.cpp#newcode42 third_party/WebKit/Source/core/layout/LayoutScrollbar.cpp:42: fprintf(stderr, "custom scrollbar\n"); Leftover from debugging? :) https://codereview.chromium.org/1393083003/diff/140001/third_party/WebKit/Source/core/layout/compositing/CompositedLayerMappingTest.cpp ...
5 years, 2 months ago (2015-10-09 22:03:55 UTC) #8
chrishtr
https://codereview.chromium.org/1393083003/diff/140001/third_party/WebKit/Source/core/layout/LayoutScrollbar.cpp File third_party/WebKit/Source/core/layout/LayoutScrollbar.cpp (right): https://codereview.chromium.org/1393083003/diff/140001/third_party/WebKit/Source/core/layout/LayoutScrollbar.cpp#newcode42 third_party/WebKit/Source/core/layout/LayoutScrollbar.cpp:42: fprintf(stderr, "custom scrollbar\n"); On 2015/10/09 at 22:03:55, ajuma wrote: ...
5 years, 2 months ago (2015-10-09 22:28:19 UTC) #9
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1393083003/150001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1393083003/150001
5 years, 2 months ago (2015-10-09 22:30:38 UTC) #12
commit-bot: I haz the power
Try jobs failed on following builders: win_chromium_compile_dbg_ng on tryserver.chromium.win (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.win/builders/win_chromium_compile_dbg_ng/builds/93920)
5 years, 2 months ago (2015-10-10 00:51:54 UTC) #14
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1393083003/170001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1393083003/170001
5 years, 2 months ago (2015-10-10 01:00:39 UTC) #17
commit-bot: I haz the power
Try jobs failed on following builders: win_chromium_compile_dbg_ng on tryserver.chromium.win (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.win/builders/win_chromium_compile_dbg_ng/builds/93982)
5 years, 2 months ago (2015-10-10 02:37:57 UTC) #19
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1393083003/190001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1393083003/190001
5 years, 2 months ago (2015-10-12 17:42:46 UTC) #22
commit-bot: I haz the power
Committed patchset #11 (id:190001)
5 years, 2 months ago (2015-10-12 19:24:06 UTC) #23
commit-bot: I haz the power
5 years, 2 months ago (2015-10-12 19:25:15 UTC) #24
Message was sent while issue was closed.
Patchset 11 (id:??) landed as
https://crrev.com/70a750f5e7427c3bed60e7c7adb231f68149f1a1
Cr-Commit-Position: refs/heads/master@{#353572}

Powered by Google App Engine
This is Rietveld 408576698