| 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 #ifndef GPU_COMMAND_BUFFER_SERVICE_COMMAND_BUFFER_SERVICE_H_ | 5 #ifndef GPU_COMMAND_BUFFER_SERVICE_COMMAND_BUFFER_SERVICE_H_ |
| 6 #define GPU_COMMAND_BUFFER_SERVICE_COMMAND_BUFFER_SERVICE_H_ | 6 #define GPU_COMMAND_BUFFER_SERVICE_COMMAND_BUFFER_SERVICE_H_ |
| 7 | 7 |
| 8 #include <set> | 8 #include <set> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 int32 put_offset_; | 54 int32 put_offset_; |
| 55 scoped_ptr<Callback0::Type> put_offset_change_callback_; | 55 scoped_ptr<Callback0::Type> put_offset_change_callback_; |
| 56 std::vector<linked_ptr< base::SharedMemory> > registered_objects_; | 56 std::vector<linked_ptr< base::SharedMemory> > registered_objects_; |
| 57 std::set<int32> unused_registered_object_elements_; | 57 std::set<int32> unused_registered_object_elements_; |
| 58 int32 token_; | 58 int32 token_; |
| 59 error::Error error_; | 59 error::Error error_; |
| 60 }; | 60 }; |
| 61 | 61 |
| 62 } // namespace gpu | 62 } // namespace gpu |
| 63 | 63 |
| 64 #endif // GPU_COMMAND_BUFFER_SERVICE_COMMAND_BUFFER_SERVICE_H_ | 64 #endif // GPU_COMMAND_BUFFER_SERVICE_COMMAND_BUFFER_SERVICE_H_ |
| OLD | NEW |