| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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_TREES_REMOTE_CHANNEL_IMPL_H_ | 5 #ifndef CC_TREES_REMOTE_CHANNEL_IMPL_H_ |
| 6 #define CC_TREES_REMOTE_CHANNEL_IMPL_H_ | 6 #define CC_TREES_REMOTE_CHANNEL_IMPL_H_ |
| 7 | 7 |
| 8 #include <queue> |
| 9 |
| 8 #include "base/macros.h" | 10 #include "base/macros.h" |
| 9 #include "base/memory/weak_ptr.h" | 11 #include "base/memory/weak_ptr.h" |
| 10 #include "cc/base/cc_export.h" | 12 #include "cc/base/cc_export.h" |
| 11 #include "cc/base/completion_event.h" | 13 #include "cc/base/completion_event.h" |
| 12 #include "cc/proto/compositor_message_to_impl.pb.h" | 14 #include "cc/proto/compositor_message_to_impl.pb.h" |
| 13 #include "cc/trees/channel_impl.h" | 15 #include "cc/trees/channel_impl.h" |
| 14 #include "cc/trees/proxy.h" | 16 #include "cc/trees/proxy.h" |
| 15 #include "cc/trees/proxy_impl.h" | 17 #include "cc/trees/proxy_impl.h" |
| 16 #include "cc/trees/remote_proto_channel.h" | 18 #include "cc/trees/remote_proto_channel.h" |
| 17 | 19 |
| (...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 197 CompositorThreadOnly compositor_thread_vars_unsafe_; | 199 CompositorThreadOnly compositor_thread_vars_unsafe_; |
| 198 | 200 |
| 199 base::WeakPtr<ProxyImpl> proxy_impl_weak_ptr_; | 201 base::WeakPtr<ProxyImpl> proxy_impl_weak_ptr_; |
| 200 | 202 |
| 201 DISALLOW_COPY_AND_ASSIGN(RemoteChannelImpl); | 203 DISALLOW_COPY_AND_ASSIGN(RemoteChannelImpl); |
| 202 }; | 204 }; |
| 203 | 205 |
| 204 } // namespace cc | 206 } // namespace cc |
| 205 | 207 |
| 206 #endif // CC_TREES_REMOTE_CHANNEL_IMPL_H_ | 208 #endif // CC_TREES_REMOTE_CHANNEL_IMPL_H_ |
| OLD | NEW |