OLD | NEW |
1 // Copyright (c) 2015 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2015 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 CONTENT_BROWSER_DEVTOOLS_DEVTOOLS_FRAME_TRACE_RECORDER_H_ | 5 #ifndef CONTENT_BROWSER_DEVTOOLS_DEVTOOLS_FRAME_TRACE_RECORDER_H_ |
6 #define CONTENT_BROWSER_DEVTOOLS_DEVTOOLS_FRAME_TRACE_RECORDER_H_ | 6 #define CONTENT_BROWSER_DEVTOOLS_DEVTOOLS_FRAME_TRACE_RECORDER_H_ |
7 | 7 |
8 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
| 9 #include "base/macros.h" |
9 #include "base/memory/weak_ptr.h" | 10 #include "base/memory/weak_ptr.h" |
10 | 11 |
11 namespace cc { | 12 namespace cc { |
12 class CompositorFrameMetadata; | 13 class CompositorFrameMetadata; |
13 } | 14 } |
14 | 15 |
15 namespace content { | 16 namespace content { |
16 | 17 |
17 class RenderFrameHostImpl; | 18 class RenderFrameHostImpl; |
18 | 19 |
(...skipping 11 matching lines...) Expand all Loading... |
30 const cc::CompositorFrameMetadata& frame_metadata); | 31 const cc::CompositorFrameMetadata& frame_metadata); |
31 | 32 |
32 private: | 33 private: |
33 DISALLOW_COPY_AND_ASSIGN(DevToolsFrameTraceRecorder); | 34 DISALLOW_COPY_AND_ASSIGN(DevToolsFrameTraceRecorder); |
34 scoped_ptr<cc::CompositorFrameMetadata> last_metadata_; | 35 scoped_ptr<cc::CompositorFrameMetadata> last_metadata_; |
35 }; | 36 }; |
36 | 37 |
37 } // namespace content | 38 } // namespace content |
38 | 39 |
39 #endif // CONTENT_BROWSER_DEVTOOLS_DEVTOOLS_FRAME_TRACE_RECORDER_H_ | 40 #endif // CONTENT_BROWSER_DEVTOOLS_DEVTOOLS_FRAME_TRACE_RECORDER_H_ |
OLD | NEW |