Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(652)

Side by Side Diff: gpu/command_buffer/service/transfer_buffer_manager.h

Issue 16667019: Rename base/hash_tables to base/containers/hash_tables. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 GPU_COMMAND_BUFFER_SERVICE_TRANSFER_BUFFER_MANAGER_H_ 5 #ifndef GPU_COMMAND_BUFFER_SERVICE_TRANSFER_BUFFER_MANAGER_H_
6 #define GPU_COMMAND_BUFFER_SERVICE_TRANSFER_BUFFER_MANAGER_H_ 6 #define GPU_COMMAND_BUFFER_SERVICE_TRANSFER_BUFFER_MANAGER_H_
7 7
8 #include <set> 8 #include <set>
9 #include <vector> 9 #include <vector>
10 10
11 #include "base/basictypes.h" 11 #include "base/basictypes.h"
12 #include "base/compiler_specific.h" 12 #include "base/compiler_specific.h"
13 #include "base/hash_tables.h" 13 #include "base/containers/hash_tables.h"
14 #include "base/shared_memory.h" 14 #include "base/shared_memory.h"
15 #include "gpu/command_buffer/common/command_buffer_shared.h" 15 #include "gpu/command_buffer/common/command_buffer_shared.h"
16 16
17 namespace gpu { 17 namespace gpu {
18 18
19 class GPU_EXPORT TransferBufferManagerInterface { 19 class GPU_EXPORT TransferBufferManagerInterface {
20 public: 20 public:
21 virtual ~TransferBufferManagerInterface(); 21 virtual ~TransferBufferManagerInterface();
22 22
23 virtual bool RegisterTransferBuffer(int32 id, 23 virtual bool RegisterTransferBuffer(int32 id,
(...skipping 22 matching lines...) Expand all
46 typedef base::hash_map<int32, Buffer> BufferMap; 46 typedef base::hash_map<int32, Buffer> BufferMap;
47 BufferMap registered_buffers_; 47 BufferMap registered_buffers_;
48 size_t shared_memory_bytes_allocated_; 48 size_t shared_memory_bytes_allocated_;
49 49
50 DISALLOW_COPY_AND_ASSIGN(TransferBufferManager); 50 DISALLOW_COPY_AND_ASSIGN(TransferBufferManager);
51 }; 51 };
52 52
53 } // namespace gpu 53 } // namespace gpu
54 54
55 #endif // GPU_COMMAND_BUFFER_SERVICE_TRANSFER_BUFFER_MANAGER_H_ 55 #endif // GPU_COMMAND_BUFFER_SERVICE_TRANSFER_BUFFER_MANAGER_H_
OLDNEW
« no previous file with comments | « gpu/command_buffer/service/texture_manager.h ('k') | gpu/command_buffer/service/vertex_array_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698