summaryrefslogtreecommitdiffstats
path: root/cc
diff options
context:
space:
mode:
authorlanwei <lanwei@chromium.org>2016-02-29 18:02:55 -0800
committerCommit bot <commit-bot@chromium.org>2016-03-01 02:03:47 +0000
commit941fa09bde00ee660a86419907eb4e66e4d58729 (patch)
treed327adc590d44b1604eeaaa9e8e6e98385e1d38d /cc
parentd2cfb0a16cc86ef3f900a0011bed4d0996764bdb (diff)
downloadchromium_src-941fa09bde00ee660a86419907eb4e66e4d58729.zip
chromium_src-941fa09bde00ee660a86419907eb4e66e4d58729.tar.gz
chromium_src-941fa09bde00ee660a86419907eb4e66e4d58729.tar.bz2
Remove metric TryScroll.SlowScroll
Since we have Renderer4.CompositorWheelScrollUpdateThread, Renderer4.CompositorTouchScrollUpdateThread to record the scrolls for wheel and touch separately running for a milestone, now we will remove the old one TryScroll.SlowScroll BUG=557787 CQ_INCLUDE_TRYBOTS=tryserver.blink:linux_blink_rel Review URL: https://codereview.chromium.org/1741103002 Cr-Commit-Position: refs/heads/master@{#378369}
Diffstat (limited to 'cc')
-rw-r--r--cc/trees/layer_tree_host_impl.cc6
1 files changed, 0 insertions, 6 deletions
diff --git a/cc/trees/layer_tree_host_impl.cc b/cc/trees/layer_tree_host_impl.cc
index 12cc09c..9443c9a 100644
--- a/cc/trees/layer_tree_host_impl.cc
+++ b/cc/trees/layer_tree_host_impl.cc
@@ -2643,9 +2643,6 @@ InputHandler::ScrollStatus LayerTreeHostImpl::ScrollBeginImpl(
client_->RenewTreePriority();
RecordCompositorSlowScrollMetric(type, CC_THREAD);
- // TODO(lanwei): Will remove this metric in M50 when we have used the new
- // metrics for one milestone, see https://crbug.com/557787.
- UMA_HISTOGRAM_BOOLEAN("TryScroll.SlowScroll", false);
return scroll_status;
}
@@ -2702,9 +2699,6 @@ InputHandler::ScrollStatus LayerTreeHostImpl::ScrollBegin(
if (scroll_on_main_thread) {
RecordCompositorSlowScrollMetric(type, MAIN_THREAD);
- // TODO(lanwei): Will remove this metric in M50 when we have used the new
- // metrics for one milestone, see https://crbug.com/557787.
- UMA_HISTOGRAM_BOOLEAN("TryScroll.SlowScroll", true);
scroll_status.thread = SCROLL_ON_MAIN_THREAD;
return scroll_status;
}