OLD | NEW |
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" | 8 #include "ui/gfx/frame_time.h" |
9 | 9 |
10 namespace cc { | 10 namespace cc { |
11 | 11 |
12 const char* BeginFrameArgs::TypeToString(BeginFrameArgsType type) { | 12 const char* BeginFrameArgs::TypeToString(BeginFrameArgsType type) { |
13 switch (type) { | 13 switch (type) { |
14 case BeginFrameArgs::INVALID: | 14 case BeginFrameArgs::INVALID: |
15 return "INVALID"; | 15 return "INVALID"; |
16 case BeginFrameArgs::NORMAL: | 16 case BeginFrameArgs::NORMAL: |
17 return "NORMAL"; | 17 return "NORMAL"; |
18 case BeginFrameArgs::SYNCHRONOUS: | |
19 return "SYNCHRONOUS"; | |
20 case BeginFrameArgs::MISSED: | 18 case BeginFrameArgs::MISSED: |
21 return "MISSED"; | 19 return "MISSED"; |
22 case BeginFrameArgs::BEGIN_FRAME_ARGS_TYPE_MAX: | 20 case BeginFrameArgs::BEGIN_FRAME_ARGS_TYPE_MAX: |
23 return "BEGIN_FRAME_ARGS_TYPE_MAX"; | 21 return "BEGIN_FRAME_ARGS_TYPE_MAX"; |
24 } | 22 } |
25 NOTREACHED(); | 23 NOTREACHED(); |
26 return "???"; | 24 return "???"; |
27 } | 25 } |
28 | 26 |
29 BeginFrameArgs::BeginFrameArgs() | 27 BeginFrameArgs::BeginFrameArgs() |
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
86 // output. | 84 // output. |
87 base::TimeDelta BeginFrameArgs::DefaultEstimatedParentDrawTime() { | 85 base::TimeDelta BeginFrameArgs::DefaultEstimatedParentDrawTime() { |
88 return base::TimeDelta::FromMicroseconds(16666 / 3); | 86 return base::TimeDelta::FromMicroseconds(16666 / 3); |
89 } | 87 } |
90 | 88 |
91 base::TimeDelta BeginFrameArgs::DefaultInterval() { | 89 base::TimeDelta BeginFrameArgs::DefaultInterval() { |
92 return base::TimeDelta::FromMicroseconds(16666); | 90 return base::TimeDelta::FromMicroseconds(16666); |
93 } | 91 } |
94 | 92 |
95 } // namespace cc | 93 } // namespace cc |
OLD | NEW |