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_COMMON_GPU_STREAM_TEXTURE_MANAGER_ANDROID_H_ | 5 #ifndef CONTENT_COMMON_GPU_STREAM_TEXTURE_MANAGER_ANDROID_H_ |
6 #define CONTENT_COMMON_GPU_STREAM_TEXTURE_MANAGER_ANDROID_H_ | 6 #define CONTENT_COMMON_GPU_STREAM_TEXTURE_MANAGER_ANDROID_H_ |
7 #pragma once | |
8 | 7 |
9 #include "base/id_map.h" | 8 #include "base/id_map.h" |
10 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
11 #include "base/memory/weak_ptr.h" | 10 #include "base/memory/weak_ptr.h" |
12 #include "gpu/command_buffer/service/stream_texture.h" | 11 #include "gpu/command_buffer/service/stream_texture.h" |
13 #include "gpu/command_buffer/service/stream_texture_manager.h" | 12 #include "gpu/command_buffer/service/stream_texture_manager.h" |
14 | 13 |
15 class GpuChannel; | 14 class GpuChannel; |
16 | 15 |
17 namespace content { | 16 namespace content { |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
54 | 53 |
55 typedef IDMap<StreamTextureAndroid, IDMapOwnPointer> TextureMap; | 54 typedef IDMap<StreamTextureAndroid, IDMapOwnPointer> TextureMap; |
56 TextureMap textures_; | 55 TextureMap textures_; |
57 | 56 |
58 DISALLOW_COPY_AND_ASSIGN(StreamTextureManagerAndroid); | 57 DISALLOW_COPY_AND_ASSIGN(StreamTextureManagerAndroid); |
59 }; | 58 }; |
60 | 59 |
61 } // namespace content | 60 } // namespace content |
62 | 61 |
63 #endif // CONTENT_COMMON_GPU_STREAM_TEXTURE_MANAGER_ANDROID_H_ | 62 #endif // CONTENT_COMMON_GPU_STREAM_TEXTURE_MANAGER_ANDROID_H_ |
OLD | NEW |