OLD | NEW |
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_STREAM_TEXTURE_HOST_ANDROID_H_ | 5 #ifndef CONTENT_RENDERER_GPU_STREAM_TEXTURE_HOST_ANDROID_H_ |
6 #define CONTENT_RENDERER_GPU_STREAM_TEXTURE_HOST_ANDROID_H_ | 6 #define CONTENT_RENDERER_GPU_STREAM_TEXTURE_HOST_ANDROID_H_ |
7 | 7 |
8 #include <stdint.h> | 8 #include <stdint.h> |
9 | 9 |
10 #include "base/macros.h" | 10 #include "base/macros.h" |
11 #include "base/memory/weak_ptr.h" | 11 #include "base/memory/weak_ptr.h" |
12 #include "content/common/android/surface_texture_peer.h" | 12 #include "gpu/ipc/common/surface_texture_peer.h" |
13 #include "ipc/ipc_listener.h" | 13 #include "ipc/ipc_listener.h" |
14 #include "ipc/ipc_message.h" | 14 #include "ipc/ipc_message.h" |
15 | 15 |
16 namespace gfx { | 16 namespace gfx { |
17 class Size; | 17 class Size; |
18 } | 18 } |
19 | 19 |
20 struct GpuStreamTextureMsg_MatrixChanged_Params; | 20 struct GpuStreamTextureMsg_MatrixChanged_Params; |
21 | 21 |
22 namespace content { | 22 namespace content { |
(...skipping 30 matching lines...) Expand all Loading... |
53 Listener* listener_; | 53 Listener* listener_; |
54 scoped_refptr<GpuChannelHost> channel_; | 54 scoped_refptr<GpuChannelHost> channel_; |
55 base::WeakPtrFactory<StreamTextureHost> weak_ptr_factory_; | 55 base::WeakPtrFactory<StreamTextureHost> weak_ptr_factory_; |
56 | 56 |
57 DISALLOW_IMPLICIT_CONSTRUCTORS(StreamTextureHost); | 57 DISALLOW_IMPLICIT_CONSTRUCTORS(StreamTextureHost); |
58 }; | 58 }; |
59 | 59 |
60 } // namespace content | 60 } // namespace content |
61 | 61 |
62 #endif // CONTENT_RENDERER_GPU_STREAM_TEXTURE_HOST_ANDROID_H_ | 62 #endif // CONTENT_RENDERER_GPU_STREAM_TEXTURE_HOST_ANDROID_H_ |
OLD | NEW |