OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 CHROME_GPU_GPU_CHANNEL_H_ | 5 #ifndef CHROME_GPU_GPU_CHANNEL_H_ |
6 #define CHROME_GPU_GPU_CHANNEL_H_ | 6 #define CHROME_GPU_GPU_CHANNEL_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <set> | 9 #include <set> |
10 #include <string> | 10 #include <string> |
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
114 #if defined(ENABLE_GPU) | 114 #if defined(ENABLE_GPU) |
115 typedef IDMap<GpuCommandBufferStub, IDMapOwnPointer> StubMap; | 115 typedef IDMap<GpuCommandBufferStub, IDMapOwnPointer> StubMap; |
116 StubMap stubs_; | 116 StubMap stubs_; |
117 | 117 |
118 #if defined(OS_MACOSX) | 118 #if defined(OS_MACOSX) |
119 std::set<int32> destroyed_renderer_routes_; | 119 std::set<int32> destroyed_renderer_routes_; |
120 #endif // defined (OS_MACOSX) | 120 #endif // defined (OS_MACOSX) |
121 #endif // defined (ENABLE_GPU) | 121 #endif // defined (ENABLE_GPU) |
122 | 122 |
123 bool log_messages_; // True if we should log sent and received messages. | 123 bool log_messages_; // True if we should log sent and received messages. |
| 124 gpu::gles2::DisallowedExtensions disallowed_extensions_; |
124 | 125 |
125 DISALLOW_COPY_AND_ASSIGN(GpuChannel); | 126 DISALLOW_COPY_AND_ASSIGN(GpuChannel); |
126 }; | 127 }; |
127 | 128 |
128 #endif // CHROME_GPU_GPU_CHANNEL_H_ | 129 #endif // CHROME_GPU_GPU_CHANNEL_H_ |
OLD | NEW |