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

Issue 364063005: Histogram to track missing and incomplete tiles (Closed)

Created:
6 years, 5 months ago by weiliangc
Modified:
6 years, 5 months ago
CC:
chromium-reviews, cc-bugs_chromium.org, asvitkine+watch_chromium.org, Ian Vollick, enne (OOO)
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Project:
chromium
Visibility:
Public.

Description

Histogram to track missing and incomplete tiles Keeps track of missing and incomplete tiles to measure ugliness during scrolling. BUG=381695 TEST=cc_unittests Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=283009

Patch Set 1 #

Total comments: 9

Patch Set 2 : address review comments #

Total comments: 11

Patch Set 3 : rebase #

Patch Set 4 : address review comments #

Total comments: 2

Patch Set 5 : review comment addressed and unit test fixed #

Patch Set 6 : rebase #

Patch Set 7 : rebase #

Patch Set 8 : rm confusing missing_tiles++ #

Unified diffs Side-by-side diffs Delta from patch set Stats (+47 lines, -11 lines) Patch
M cc/layers/append_quads_data.h View 1 1 chunk +3 lines, -3 lines 0 comments Download
M cc/layers/picture_image_layer_impl_unittest.cc View 1 2 3 4 1 chunk +1 line, -1 line 0 comments Download
M cc/layers/picture_layer_impl.cc View 1 2 3 4 5 6 7 3 chunks +1 line, -3 lines 0 comments Download
M cc/trees/layer_tree_host_impl.cc View 1 2 3 4 5 6 4 chunks +17 lines, -1 line 0 comments Download
M cc/trees/layer_tree_host_impl_unittest.cc View 1 2 3 4 5 6 3 chunks +4 lines, -3 lines 0 comments Download
M tools/metrics/histograms/histograms.xml View 1 chunk +21 lines, -0 lines 0 comments Download

Messages

Total messages: 28 (0 generated)
weiliangc
cc: danakj histogram: asvitkine
6 years, 5 months ago (2014-07-03 15:58:20 UTC) #1
danakj
https://codereview.chromium.org/364063005/diff/1/cc/layers/append_quads_data.h File cc/layers/append_quads_data.h (right): https://codereview.chromium.org/364063005/diff/1/cc/layers/append_quads_data.h#newcode15 cc/layers/append_quads_data.h:15: : had_incomplete_tile(false), do we need this one anymore? Just ...
6 years, 5 months ago (2014-07-03 16:01:45 UTC) #2
Alexei Svitkine (slow)
LGTM % comments https://codereview.chromium.org/364063005/diff/1/tools/metrics/histograms/histograms.xml File tools/metrics/histograms/histograms.xml (right): https://codereview.chromium.org/364063005/diff/1/tools/metrics/histograms/histograms.xml#newcode24597 tools/metrics/histograms/histograms.xml:24597: +<histogram name="RenderPass.AppendQuadData.NumIncompleteTiles"> There's already a "Compositing.*" ...
6 years, 5 months ago (2014-07-04 15:40:27 UTC) #3
weiliangc
https://codereview.chromium.org/364063005/diff/1/cc/layers/append_quads_data.h File cc/layers/append_quads_data.h (right): https://codereview.chromium.org/364063005/diff/1/cc/layers/append_quads_data.h#newcode15 cc/layers/append_quads_data.h:15: : had_incomplete_tile(false), On 2014/07/03 16:01:45, danakj wrote: > do ...
6 years, 5 months ago (2014-07-04 21:35:53 UTC) #4
danakj
https://codereview.chromium.org/364063005/diff/20001/cc/layers/picture_layer_impl.cc File cc/layers/picture_layer_impl.cc (right): https://codereview.chromium.org/364063005/diff/20001/cc/layers/picture_layer_impl.cc#newcode283 cc/layers/picture_layer_impl.cc:283: if (iter->contents_scale() != ideal_contents_scale_) { nit: don't need to ...
6 years, 5 months ago (2014-07-07 20:06:28 UTC) #5
weiliangc
https://codereview.chromium.org/364063005/diff/20001/cc/trees/layer_tree_host_impl.cc File cc/trees/layer_tree_host_impl.cc (right): https://codereview.chromium.org/364063005/diff/20001/cc/trees/layer_tree_host_impl.cc#newcode870 cc/trees/layer_tree_host_impl.cc:870: if (append_quads_data.num_incomplete_tiles > 0) { On 2014/07/07 20:06:28, danakj ...
6 years, 5 months ago (2014-07-07 21:50:09 UTC) #6
danakj
https://codereview.chromium.org/364063005/diff/20001/cc/trees/layer_tree_host_impl.cc File cc/trees/layer_tree_host_impl.cc (right): https://codereview.chromium.org/364063005/diff/20001/cc/trees/layer_tree_host_impl.cc#newcode870 cc/trees/layer_tree_host_impl.cc:870: if (append_quads_data.num_incomplete_tiles > 0) { On 2014/07/07 21:50:09, weiliangc ...
6 years, 5 months ago (2014-07-07 21:52:01 UTC) #7
weiliangc
https://codereview.chromium.org/364063005/diff/20001/cc/trees/layer_tree_host_impl.cc File cc/trees/layer_tree_host_impl.cc (right): https://codereview.chromium.org/364063005/diff/20001/cc/trees/layer_tree_host_impl.cc#newcode870 cc/trees/layer_tree_host_impl.cc:870: if (append_quads_data.num_incomplete_tiles > 0) { On 2014/07/07 21:52:01, danakj ...
6 years, 5 months ago (2014-07-07 21:55:34 UTC) #8
weiliangc
https://codereview.chromium.org/364063005/diff/20001/cc/layers/picture_layer_impl.cc File cc/layers/picture_layer_impl.cc (right): https://codereview.chromium.org/364063005/diff/20001/cc/layers/picture_layer_impl.cc#newcode283 cc/layers/picture_layer_impl.cc:283: if (iter->contents_scale() != ideal_contents_scale_) { On 2014/07/07 20:06:27, danakj ...
6 years, 5 months ago (2014-07-07 22:01:21 UTC) #9
danakj
LGTM https://codereview.chromium.org/364063005/diff/60001/cc/layers/picture_image_layer_impl_unittest.cc File cc/layers/picture_image_layer_impl_unittest.cc (right): https://codereview.chromium.org/364063005/diff/60001/cc/layers/picture_image_layer_impl_unittest.cc#newcode160 cc/layers/picture_image_layer_impl_unittest.cc:160: EXPECT_EQ(data.num_incomplete_tiles, 0); order should be: expected, actual https://codereview.chromium.org/364063005/diff/60001/cc/trees/layer_tree_host_impl.cc ...
6 years, 5 months ago (2014-07-07 22:07:41 UTC) #10
weiliangc
The CQ bit was checked by weiliangc@chromium.org
6 years, 5 months ago (2014-07-08 14:10:37 UTC) #11
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/weiliangc@chromium.org/364063005/80001
6 years, 5 months ago (2014-07-08 14:12:07 UTC) #12
commit-bot: I haz the power
FYI, CQ is re-trying this CL (attempt #1). The failing builders are: android_dbg_triggered_tests on tryserver.chromium ...
6 years, 5 months ago (2014-07-08 22:09:04 UTC) #13
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 5 months ago (2014-07-08 22:26:44 UTC) #14
commit-bot: I haz the power
Try jobs failed on following builders: android_dbg_triggered_tests on tryserver.chromium (http://build.chromium.org/p/tryserver.chromium/builders/android_dbg_triggered_tests/builds/168953)
6 years, 5 months ago (2014-07-08 22:26:45 UTC) #15
weiliangc
The CQ bit was checked by weiliangc@chromium.org
6 years, 5 months ago (2014-07-09 14:38:27 UTC) #16
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/weiliangc@chromium.org/364063005/80001
6 years, 5 months ago (2014-07-09 14:39:44 UTC) #17
commit-bot: I haz the power
FYI, CQ is re-trying this CL (attempt #1). The failing builders are: android_dbg_triggered_tests on tryserver.chromium ...
6 years, 5 months ago (2014-07-10 02:40:13 UTC) #18
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 5 months ago (2014-07-10 06:35:13 UTC) #19
commit-bot: I haz the power
Try jobs failed on following builders: android_dbg_triggered_tests on tryserver.chromium (http://build.chromium.org/p/tryserver.chromium/builders/android_dbg_triggered_tests/builds/169608)
6 years, 5 months ago (2014-07-10 06:35:14 UTC) #20
weiliangc
The CQ bit was checked by weiliangc@chromium.org
6 years, 5 months ago (2014-07-10 16:57:40 UTC) #21
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/weiliangc@chromium.org/364063005/100001
6 years, 5 months ago (2014-07-10 16:58:26 UTC) #22
commit-bot: I haz the power
FYI, CQ is re-trying this CL (attempt #1). The failing builders are: android_dbg_triggered_tests on tryserver.chromium ...
6 years, 5 months ago (2014-07-10 21:16:55 UTC) #23
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 5 months ago (2014-07-11 01:12:39 UTC) #24
commit-bot: I haz the power
Try jobs failed on following builders: android_dbg_triggered_tests on tryserver.chromium (http://build.chromium.org/p/tryserver.chromium/builders/android_dbg_triggered_tests/builds/169849)
6 years, 5 months ago (2014-07-11 01:12:40 UTC) #25
weiliangc
The CQ bit was checked by weiliangc@chromium.org
6 years, 5 months ago (2014-07-14 18:47:59 UTC) #26
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/weiliangc@chromium.org/364063005/140001
6 years, 5 months ago (2014-07-14 18:48:58 UTC) #27
commit-bot: I haz the power
6 years, 5 months ago (2014-07-14 20:32:09 UTC) #28
Message was sent while issue was closed.
Change committed as 283009

Powered by Google App Engine
This is Rietveld 408576698