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

Issue 340743002: cc: Removing base::TimeTicks argument to DrawLayers as it isn't used. (Closed)

Created:
6 years, 6 months ago by mithro-old
Modified:
5 years, 7 months ago
CC:
chromium-reviews, cc-bugs_chromium.org
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

cc: Removing base::TimeTicks argument to DrawLayers as it isn't used. R=skyostil,brianderson BUG=346230 Committed: https://crrev.com/248d172e6a28652b0159dfc5c33425c7507f8034 Cr-Commit-Position: refs/heads/master@{#328283}

Patch Set 1 #

Total comments: 2

Patch Set 2 : Rebasing onto master. #

Total comments: 3

Patch Set 3 : Rebase onto master. #

Patch Set 4 : Change to CurrentFrameTimeTicks rather then current_time_ticks_ directly. #

Patch Set 5 : Removing argument from DoComposite. #

Patch Set 6 : Rebase onto master. #

Patch Set 7 : Rebase onto master after revert. #

Patch Set 8 : Also remove from DoComposite method. #

Total comments: 2

Patch Set 9 : Rebase onto master. #

Patch Set 10 : Rebase onto master for landing. #

Unified diffs Side-by-side diffs Delta from patch set Stats (+88 lines, -91 lines) Patch
M cc/layers/delegated_renderer_layer_impl_unittest.cc View 1 2 3 4 5 6 26 chunks +26 lines, -26 lines 0 comments Download
M cc/test/layer_tree_test.cc View 1 2 3 4 5 6 1 chunk +2 lines, -2 lines 0 comments Download
M cc/trees/layer_tree_host_impl.h View 1 2 3 4 5 6 7 8 9 1 chunk +1 line, -1 line 0 comments Download
M cc/trees/layer_tree_host_impl.cc View 1 2 3 4 5 6 7 8 9 1 chunk +3 lines, -2 lines 0 comments Download
M cc/trees/layer_tree_host_impl_unittest.cc View 1 2 3 4 5 6 7 8 9 50 chunks +50 lines, -50 lines 0 comments Download
M cc/trees/single_thread_proxy.h View 1 2 3 4 5 6 7 8 9 1 chunk +1 line, -2 lines 0 comments Download
M cc/trees/single_thread_proxy.cc View 1 2 3 4 5 6 7 8 9 4 chunks +4 lines, -6 lines 0 comments Download
M cc/trees/thread_proxy.cc View 1 2 3 4 5 6 1 chunk +1 line, -2 lines 0 comments Download

Messages

Total messages: 28 (1 generated)
mithro-old
Hi! A CL which removes base::TimeTicks from DrawLayers as it doesn't appear to actually be ...
6 years, 6 months ago (2014-06-18 07:21:39 UTC) #1
danakj
In general I prefer pushing needed data to methods rather than having them pull the ...
6 years, 6 months ago (2014-06-18 15:23:19 UTC) #2
mithro-old
Hi Dana, PTAL. Thanks! Tim https://codereview.chromium.org/340743002/diff/1/cc/trees/thread_proxy.cc File cc/trees/thread_proxy.cc (left): https://codereview.chromium.org/340743002/diff/1/cc/trees/thread_proxy.cc#oldcode1063 cc/trees/thread_proxy.cc:1063: impl().layer_tree_host_impl->Animate(impl().animation_time); On 2014/06/18 15:23:18, ...
6 years, 5 months ago (2014-07-02 05:39:51 UTC) #3
danakj
https://codereview.chromium.org/340743002/diff/20001/cc/trees/single_thread_proxy.cc File cc/trees/single_thread_proxy.cc (left): https://codereview.chromium.org/340743002/diff/20001/cc/trees/single_thread_proxy.cc#oldcode432 cc/trees/single_thread_proxy.cc:432: layer_tree_host_impl_->DrawLayers(frame, frame_begin_time); How does the frame_begin_time get to the ...
6 years, 5 months ago (2014-07-02 18:51:38 UTC) #4
mithro-old
https://codereview.chromium.org/340743002/diff/20001/cc/trees/single_thread_proxy.cc File cc/trees/single_thread_proxy.cc (left): https://codereview.chromium.org/340743002/diff/20001/cc/trees/single_thread_proxy.cc#oldcode432 cc/trees/single_thread_proxy.cc:432: layer_tree_host_impl_->DrawLayers(frame, frame_begin_time); On 2014/07/02 18:51:38, danakj wrote: > How ...
6 years, 5 months ago (2014-07-07 05:27:32 UTC) #5
brianderson
nit: I don't think there is a hard rule, but consider keeping the patch title ...
6 years, 5 months ago (2014-07-07 20:22:48 UTC) #6
danakj
https://codereview.chromium.org/340743002/diff/20001/cc/trees/single_thread_proxy.cc File cc/trees/single_thread_proxy.cc (left): https://codereview.chromium.org/340743002/diff/20001/cc/trees/single_thread_proxy.cc#oldcode432 cc/trees/single_thread_proxy.cc:432: layer_tree_host_impl_->DrawLayers(frame, frame_begin_time); On 2014/07/07 05:27:32, mithro wrote: > On ...
6 years, 5 months ago (2014-07-07 20:56:45 UTC) #7
mithro-old
On 2014/07/07 20:56:45, danakj wrote: > https://codereview.chromium.org/340743002/diff/20001/cc/trees/single_thread_proxy.cc > File cc/trees/single_thread_proxy.cc (left): > > https://codereview.chromium.org/340743002/diff/20001/cc/trees/single_thread_proxy.cc#oldcode432 > ...
6 years, 5 months ago (2014-07-08 04:47:07 UTC) #8
danakj
On Tue, Jul 8, 2014 at 12:47 AM, <mithro@mithis.com> wrote: > On 2014/07/07 20:56:45, danakj ...
6 years, 5 months ago (2014-07-08 16:11:52 UTC) #9
mithro-old
> > It's a small change and you're leaving an unused variable behind, i'd > ...
6 years, 5 months ago (2014-07-10 06:28:25 UTC) #10
danakj
THanks, LGTM BTW please try avoid uploading a patchset that contains both a rebase and ...
6 years, 5 months ago (2014-07-10 17:23:26 UTC) #11
mithro-old
The CQ bit was checked by mithro@mithis.com
6 years, 5 months ago (2014-07-10 22:35:18 UTC) #12
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/mithro@mithis.com/340743002/100001
6 years, 5 months ago (2014-07-10 22:37:15 UTC) #13
commit-bot: I haz the power
Change committed as 282456
6 years, 5 months ago (2014-07-10 23:16:50 UTC) #14
mithro-old
On 2014/07/10 23:16:50, I haz the power (commit-bot) wrote: > Change committed as 282456 This ...
5 years, 8 months ago (2015-04-24 04:40:04 UTC) #15
danakj
https://codereview.chromium.org/340743002/diff/160001/cc/trees/layer_tree_host_impl.cc File cc/trees/layer_tree_host_impl.cc (right): https://codereview.chromium.org/340743002/diff/160001/cc/trees/layer_tree_host_impl.cc#newcode1463 cc/trees/layer_tree_host_impl.cc:1463: base::TimeTicks frame_begin_time = CurrentBeginFrameArgs().frame_time; I think I prefer passing ...
5 years, 8 months ago (2015-04-24 17:24:23 UTC) #16
danakj
https://codereview.chromium.org/340743002/diff/160001/cc/trees/layer_tree_host_impl.cc File cc/trees/layer_tree_host_impl.cc (right): https://codereview.chromium.org/340743002/diff/160001/cc/trees/layer_tree_host_impl.cc#newcode1463 cc/trees/layer_tree_host_impl.cc:1463: base::TimeTicks frame_begin_time = CurrentBeginFrameArgs().frame_time; On 2015/04/24 17:24:22, danakj wrote: ...
5 years, 8 months ago (2015-04-24 17:24:47 UTC) #17
mithro-old
On 2015/04/24 17:24:47, danakj wrote: > https://codereview.chromium.org/340743002/diff/160001/cc/trees/layer_tree_host_impl.cc > File cc/trees/layer_tree_host_impl.cc (right): > > https://codereview.chromium.org/340743002/diff/160001/cc/trees/layer_tree_host_impl.cc#newcode1463 > ...
5 years, 8 months ago (2015-04-27 02:17:45 UTC) #18
danakj
On Sun, Apr 26, 2015 at 7:17 PM, <mithro@mithis.com> wrote: > On 2015/04/24 17:24:47, danakj ...
5 years, 8 months ago (2015-04-27 17:27:07 UTC) #19
mithro-old
On 2015/04/27 17:27:07, danakj wrote: > On Sun, Apr 26, 2015 at 7:17 PM, <mailto:mithro@mithis.com> ...
5 years, 8 months ago (2015-04-28 01:28:05 UTC) #20
brianderson
I do see value in having it passed in as an argument if we ever ...
5 years, 7 months ago (2015-05-01 01:18:43 UTC) #21
brianderson
Forgot to mention: a lot of tests were using Now() for the frame time and ...
5 years, 7 months ago (2015-05-01 01:21:58 UTC) #22
mithro-old
On 2015/05/01 01:21:58, brianderson wrote: > Forgot to mention: a lot of tests were using ...
5 years, 7 months ago (2015-05-01 04:20:04 UTC) #23
danakj
LGTM
5 years, 7 months ago (2015-05-04 22:41:00 UTC) #24
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/340743002/200001
5 years, 7 months ago (2015-05-05 04:21:25 UTC) #26
commit-bot: I haz the power
Committed patchset #10 (id:200001)
5 years, 7 months ago (2015-05-05 05:23:55 UTC) #27
commit-bot: I haz the power
5 years, 7 months ago (2015-05-05 05:25:01 UTC) #28
Message was sent while issue was closed.
Patchset 10 (id:??) landed as
https://crrev.com/248d172e6a28652b0159dfc5c33425c7507f8034
Cr-Commit-Position: refs/heads/master@{#328283}

Powered by Google App Engine
This is Rietveld 408576698