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 #ifndef CC_OUTPUT_BEGIN_FRAME_ARGS_H_ | 5 #ifndef CC_OUTPUT_BEGIN_FRAME_ARGS_H_ |
6 #define CC_OUTPUT_BEGIN_FRAME_ARGS_H_ | 6 #define CC_OUTPUT_BEGIN_FRAME_ARGS_H_ |
7 | 7 |
8 #include "base/time.h" | 8 #include "base/time/time.h" |
9 #include "cc/base/cc_export.h" | 9 #include "cc/base/cc_export.h" |
10 | 10 |
11 namespace cc { | 11 namespace cc { |
12 | 12 |
13 struct CC_EXPORT BeginFrameArgs { | 13 struct CC_EXPORT BeginFrameArgs { |
14 // Creates an invalid set of values. | 14 // Creates an invalid set of values. |
15 BeginFrameArgs(); | 15 BeginFrameArgs(); |
16 | 16 |
17 // You should be able to find all instances where a BeginFrame has been | 17 // You should be able to find all instances where a BeginFrame has been |
18 // created by searching for "BeginFrameArgs::Create". | 18 // created by searching for "BeginFrameArgs::Create". |
(...skipping 28 matching lines...) Expand all Loading... |
47 | 47 |
48 private: | 48 private: |
49 BeginFrameArgs(base::TimeTicks frame_time, | 49 BeginFrameArgs(base::TimeTicks frame_time, |
50 base::TimeTicks deadline, | 50 base::TimeTicks deadline, |
51 base::TimeDelta interval); | 51 base::TimeDelta interval); |
52 }; | 52 }; |
53 | 53 |
54 } // namespace cc | 54 } // namespace cc |
55 | 55 |
56 #endif // CC_OUTPUT_BEGIN_FRAME_ARGS_H_ | 56 #endif // CC_OUTPUT_BEGIN_FRAME_ARGS_H_ |
OLD | NEW |