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

Side by Side Diff: content/renderer/gpu/renderer_compositor_frame_sink.h

Issue 2763633002: CHECK that the RendererCompositorFrameSink has been detached (Closed)
Patch Set: check-bound: . Created 3 years, 9 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 | « no previous file | content/renderer/gpu/renderer_compositor_frame_sink.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 (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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_RENDERER_GPU_RENDERER_COMPOSITOR_FRAME_SINK_H_ 5 #ifndef CONTENT_RENDERER_GPU_RENDERER_COMPOSITOR_FRAME_SINK_H_
6 #define CONTENT_RENDERER_GPU_RENDERER_COMPOSITOR_FRAME_SINK_H_ 6 #define CONTENT_RENDERER_GPU_RENDERER_COMPOSITOR_FRAME_SINK_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include <memory> 10 #include <memory>
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
97 scoped_refptr<CompositorForwardingMessageFilter> 97 scoped_refptr<CompositorForwardingMessageFilter>
98 compositor_frame_sink_filter_; 98 compositor_frame_sink_filter_;
99 CompositorForwardingMessageFilter::Handler 99 CompositorForwardingMessageFilter::Handler
100 compositor_frame_sink_filter_handler_; 100 compositor_frame_sink_filter_handler_;
101 scoped_refptr<RendererCompositorFrameSinkProxy> compositor_frame_sink_proxy_; 101 scoped_refptr<RendererCompositorFrameSinkProxy> compositor_frame_sink_proxy_;
102 scoped_refptr<IPC::SyncMessageFilter> message_sender_; 102 scoped_refptr<IPC::SyncMessageFilter> message_sender_;
103 scoped_refptr<FrameSwapMessageQueue> frame_swap_message_queue_; 103 scoped_refptr<FrameSwapMessageQueue> frame_swap_message_queue_;
104 std::unique_ptr<cc::BeginFrameSource> begin_frame_source_; 104 std::unique_ptr<cc::BeginFrameSource> begin_frame_source_;
105 int routing_id_; 105 int routing_id_;
106 base::ThreadChecker thread_checker_; 106 base::ThreadChecker thread_checker_;
107 bool bound_ = false;
107 }; 108 };
108 109
109 } // namespace content 110 } // namespace content
110 111
111 #endif // CONTENT_RENDERER_GPU_RENDERER_COMPOSITOR_FRAME_SINK_H_ 112 #endif // CONTENT_RENDERER_GPU_RENDERER_COMPOSITOR_FRAME_SINK_H_
OLDNEW
« no previous file with comments | « no previous file | content/renderer/gpu/renderer_compositor_frame_sink.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698