OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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 #include "webkit/tools/pepper_test_plugin/command_buffer_pepper.h" | 5 #include "webkit/tools/pepper_test_plugin/command_buffer_pepper.h" |
6 #include "base/logging.h" | 6 #include "base/logging.h" |
7 | 7 |
8 using base::SharedMemory; | 8 using base::SharedMemory; |
9 using gpu::Buffer; | 9 using gpu::Buffer; |
10 | 10 |
(...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
166 return value != 0; | 166 return value != 0; |
167 } | 167 } |
168 | 168 |
169 return true; | 169 return true; |
170 } | 170 } |
171 | 171 |
172 void CommandBufferPepper::RaiseErrorStatus() { | 172 void CommandBufferPepper::RaiseErrorStatus() { |
173 // Not implemented by proxy. | 173 // Not implemented by proxy. |
174 NOTREACHED(); | 174 NOTREACHED(); |
175 } | 175 } |
OLD | NEW |