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

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

Issue 1143433005: Remove gfx::FrameTime for a single clock source (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Handling patch for mac files Created 5 years, 7 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
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/trace_event/trace_event_argument.h" 7 #include "base/trace_event/trace_event_argument.h"
8 #include "ui/gfx/frame_time.h"
9 8
10 namespace cc { 9 namespace cc {
11 10
12 const char* BeginFrameArgs::TypeToString(BeginFrameArgsType type) { 11 const char* BeginFrameArgs::TypeToString(BeginFrameArgsType type) {
13 switch (type) { 12 switch (type) {
14 case BeginFrameArgs::INVALID: 13 case BeginFrameArgs::INVALID:
15 return "INVALID"; 14 return "INVALID";
16 case BeginFrameArgs::NORMAL: 15 case BeginFrameArgs::NORMAL:
17 return "NORMAL"; 16 return "NORMAL";
18 case BeginFrameArgs::MISSED: 17 case BeginFrameArgs::MISSED:
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
84 // output. 83 // output.
85 base::TimeDelta BeginFrameArgs::DefaultEstimatedParentDrawTime() { 84 base::TimeDelta BeginFrameArgs::DefaultEstimatedParentDrawTime() {
86 return base::TimeDelta::FromMicroseconds(16666 / 3); 85 return base::TimeDelta::FromMicroseconds(16666 / 3);
87 } 86 }
88 87
89 base::TimeDelta BeginFrameArgs::DefaultInterval() { 88 base::TimeDelta BeginFrameArgs::DefaultInterval() {
90 return base::TimeDelta::FromMicroseconds(16666); 89 return base::TimeDelta::FromMicroseconds(16666);
91 } 90 }
92 91
93 } // namespace cc 92 } // namespace cc
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698