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

Side by Side Diff: cc/output/begin_frame_args.cc

Issue 851503003: Update from https://crrev.com/311076 (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « cc/output/begin_frame_args.h ('k') | cc/output/delegating_renderer.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "cc/output/begin_frame_args.h" 5 #include "cc/output/begin_frame_args.h"
6 6
7 #include "base/debug/trace_event_argument.h" 7 #include "base/debug/trace_event_argument.h"
8 #include "ui/gfx/frame_time.h" 8 #include "ui/gfx/frame_time.h"
9 9
10 namespace cc { 10 namespace cc {
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
85 // ouput, and the Renderer Main thread the first 1/3 of a frame to produce 85 // ouput, and the Renderer Main thread the first 1/3 of a frame to produce
86 // output. 86 // output.
87 base::TimeDelta BeginFrameArgs::DefaultEstimatedParentDrawTime() { 87 base::TimeDelta BeginFrameArgs::DefaultEstimatedParentDrawTime() {
88 return base::TimeDelta::FromMicroseconds(16666 / 3); 88 return base::TimeDelta::FromMicroseconds(16666 / 3);
89 } 89 }
90 90
91 base::TimeDelta BeginFrameArgs::DefaultInterval() { 91 base::TimeDelta BeginFrameArgs::DefaultInterval() {
92 return base::TimeDelta::FromMicroseconds(16666); 92 return base::TimeDelta::FromMicroseconds(16666);
93 } 93 }
94 94
95 base::TimeDelta BeginFrameArgs::DefaultRetroactiveBeginFramePeriod() {
96 return base::TimeDelta::FromMicroseconds(4444);
97 }
98
99 } // namespace cc 95 } // namespace cc
OLDNEW
« no previous file with comments | « cc/output/begin_frame_args.h ('k') | cc/output/delegating_renderer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698