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_BROWSER_RENDERER_HOST_SURFACE_TEXTURE_TRANSPORT_CLIENT_ANDROID_H
_ | 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_SURFACE_TEXTURE_TRANSPORT_CLIENT_ANDROID_H
_ |
6 #define CONTENT_BROWSER_RENDERER_HOST_SURFACE_TEXTURE_TRANSPORT_CLIENT_ANDROID_H
_ | 6 #define CONTENT_BROWSER_RENDERER_HOST_SURFACE_TEXTURE_TRANSPORT_CLIENT_ANDROID_H
_ |
7 | 7 |
8 #include "base/memory/ref_counted.h" | 8 #include "base/memory/ref_counted.h" |
9 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
10 #include "cc/video_frame_provider.h" | 10 #include "cc/layers/video_frame_provider.h" |
11 #include "ui/gfx/native_widget_types.h" | 11 #include "ui/gfx/native_widget_types.h" |
12 #include "ui/gfx/size.h" | 12 #include "ui/gfx/size.h" |
13 | 13 |
14 struct ANativeWindow; | 14 struct ANativeWindow; |
15 | 15 |
16 namespace cc { | 16 namespace cc { |
17 class Layer; | 17 class Layer; |
18 class VideoLayer; | 18 class VideoLayer; |
19 } | 19 } |
20 | 20 |
(...skipping 24 matching lines...) Expand all Loading... |
45 scoped_refptr<media::VideoFrame> video_frame_; | 45 scoped_refptr<media::VideoFrame> video_frame_; |
46 uint32 texture_id_; | 46 uint32 texture_id_; |
47 int surface_id_; | 47 int surface_id_; |
48 | 48 |
49 DISALLOW_COPY_AND_ASSIGN(SurfaceTextureTransportClient); | 49 DISALLOW_COPY_AND_ASSIGN(SurfaceTextureTransportClient); |
50 }; | 50 }; |
51 | 51 |
52 } // namespace content | 52 } // namespace content |
53 | 53 |
54 #endif // CONTENT_BROWSER_RENDERER_HOST_SURFACE_TEXTURE_TRANSPORT_CLIENT_ANDROI
D_H_ | 54 #endif // CONTENT_BROWSER_RENDERER_HOST_SURFACE_TEXTURE_TRANSPORT_CLIENT_ANDROI
D_H_ |
OLD | NEW |