SharedBitmap      287 cc/resources/resource_provider.cc                                      SharedBitmap* bitmap,
SharedBitmap      700 cc/resources/resource_provider.cc   scoped_ptr<SharedBitmap> bitmap;
SharedBitmap      776 cc/resources/resource_provider.cc     scoped_ptr<SharedBitmap> shared_bitmap;
SharedBitmap     1072 cc/resources/resource_provider.cc     scoped_ptr<SharedBitmap> bitmap =
SharedBitmap       51 cc/resources/resource_provider.h class SharedBitmap;
SharedBitmap      395 cc/resources/resource_provider.h              SharedBitmap* bitmap,
SharedBitmap      444 cc/resources/resource_provider.h     SharedBitmap* shared_bitmap;
SharedBitmap       12 cc/resources/shared_bitmap.cc SharedBitmap::SharedBitmap(
SharedBitmap       15 cc/resources/shared_bitmap.cc     const base::Callback<void(SharedBitmap*)>& free_callback)
SharedBitmap       18 cc/resources/shared_bitmap.cc SharedBitmap::~SharedBitmap() { free_callback_.Run(this); }
SharedBitmap       21 cc/resources/shared_bitmap.cc bool SharedBitmap::GetSizeInBytes(const gfx::Size& size,
SharedBitmap       35 cc/resources/shared_bitmap.cc SharedBitmapId SharedBitmap::GenerateId() {
SharedBitmap       20 cc/resources/shared_bitmap.h class CC_EXPORT SharedBitmap {
SharedBitmap       22 cc/resources/shared_bitmap.h   SharedBitmap(base::SharedMemory* memory,
SharedBitmap       24 cc/resources/shared_bitmap.h                const base::Callback<void(SharedBitmap*)>& free_callback);
SharedBitmap       26 cc/resources/shared_bitmap.h   ~SharedBitmap();
SharedBitmap       28 cc/resources/shared_bitmap.h   bool operator<(const SharedBitmap& right) const {
SharedBitmap       50 cc/resources/shared_bitmap.h   base::Callback<void(SharedBitmap*)> free_callback_;
SharedBitmap       52 cc/resources/shared_bitmap.h   DISALLOW_COPY_AND_ASSIGN(SharedBitmap);
SharedBitmap       20 cc/resources/shared_bitmap_manager.h   virtual scoped_ptr<SharedBitmap> AllocateSharedBitmap(const gfx::Size&) = 0;
SharedBitmap       21 cc/resources/shared_bitmap_manager.h   virtual scoped_ptr<SharedBitmap> GetSharedBitmapFromId(
SharedBitmap       24 cc/resources/shared_bitmap_manager.h   virtual scoped_ptr<SharedBitmap> GetBitmapForSharedMemory(
SharedBitmap       11 cc/test/test_shared_bitmap_manager.cc void FreeSharedBitmap(SharedBitmap* shared_bitmap) {
SharedBitmap       15 cc/test/test_shared_bitmap_manager.cc void IgnoreSharedBitmap(SharedBitmap* shared_bitmap) {}
SharedBitmap       21 cc/test/test_shared_bitmap_manager.cc scoped_ptr<SharedBitmap> TestSharedBitmapManager::AllocateSharedBitmap(
SharedBitmap       26 cc/test/test_shared_bitmap_manager.cc   SharedBitmapId id = SharedBitmap::GenerateId();
SharedBitmap       28 cc/test/test_shared_bitmap_manager.cc   return scoped_ptr<SharedBitmap>(
SharedBitmap       29 cc/test/test_shared_bitmap_manager.cc       new SharedBitmap(memory.release(), id, base::Bind(&FreeSharedBitmap)));
SharedBitmap       32 cc/test/test_shared_bitmap_manager.cc scoped_ptr<SharedBitmap> TestSharedBitmapManager::GetSharedBitmapFromId(
SharedBitmap       37 cc/test/test_shared_bitmap_manager.cc     return scoped_ptr<SharedBitmap>();
SharedBitmap       38 cc/test/test_shared_bitmap_manager.cc   return scoped_ptr<SharedBitmap>(
SharedBitmap       39 cc/test/test_shared_bitmap_manager.cc       new SharedBitmap(bitmap_map_[id], id, base::Bind(&IgnoreSharedBitmap)));
SharedBitmap       42 cc/test/test_shared_bitmap_manager.cc scoped_ptr<SharedBitmap> TestSharedBitmapManager::GetBitmapForSharedMemory(
SharedBitmap       45 cc/test/test_shared_bitmap_manager.cc   SharedBitmapId id = SharedBitmap::GenerateId();
SharedBitmap       47 cc/test/test_shared_bitmap_manager.cc   return scoped_ptr<SharedBitmap>(
SharedBitmap       48 cc/test/test_shared_bitmap_manager.cc       new SharedBitmap(memory, id, base::Bind(&IgnoreSharedBitmap)));
SharedBitmap       20 cc/test/test_shared_bitmap_manager.h   virtual scoped_ptr<SharedBitmap> AllocateSharedBitmap(const gfx::Size& size)
SharedBitmap       23 cc/test/test_shared_bitmap_manager.h   virtual scoped_ptr<SharedBitmap> GetSharedBitmapFromId(
SharedBitmap       27 cc/test/test_shared_bitmap_manager.h   virtual scoped_ptr<SharedBitmap> GetBitmapForSharedMemory(
SharedBitmap       19 content/child/child_shared_bitmap_manager.cc scoped_ptr<cc::SharedBitmap> ChildSharedBitmapManager::AllocateSharedBitmap(
SharedBitmap       28 content/child/child_shared_bitmap_manager.cc   if (!cc::SharedBitmap::GetSizeInBytes(size, &memory_size))
SharedBitmap       29 content/child/child_shared_bitmap_manager.cc     return scoped_ptr<cc::SharedBitmap>();
SharedBitmap       30 content/child/child_shared_bitmap_manager.cc   cc::SharedBitmapId id = cc::SharedBitmap::GenerateId();
SharedBitmap       47 content/child/child_shared_bitmap_manager.cc   return scoped_ptr<cc::SharedBitmap>(new cc::SharedBitmap(
SharedBitmap       54 content/child/child_shared_bitmap_manager.cc scoped_ptr<cc::SharedBitmap> ChildSharedBitmapManager::GetSharedBitmapFromId(
SharedBitmap       58 content/child/child_shared_bitmap_manager.cc   return scoped_ptr<cc::SharedBitmap>();
SharedBitmap       61 content/child/child_shared_bitmap_manager.cc scoped_ptr<cc::SharedBitmap> ChildSharedBitmapManager::GetBitmapForSharedMemory(
SharedBitmap       63 content/child/child_shared_bitmap_manager.cc   cc::SharedBitmapId id = cc::SharedBitmap::GenerateId();
SharedBitmap       67 content/child/child_shared_bitmap_manager.cc     return scoped_ptr<cc::SharedBitmap>();
SharedBitmap       73 content/child/child_shared_bitmap_manager.cc   return scoped_ptr<cc::SharedBitmap>(new cc::SharedBitmap(
SharedBitmap       80 content/child/child_shared_bitmap_manager.cc void ChildSharedBitmapManager::FreeSharedMemory(cc::SharedBitmap* bitmap) {
SharedBitmap       86 content/child/child_shared_bitmap_manager.cc void ChildSharedBitmapManager::ReleaseSharedBitmap(cc::SharedBitmap* handle) {
SharedBitmap       21 content/child/child_shared_bitmap_manager.h   virtual scoped_ptr<cc::SharedBitmap> AllocateSharedBitmap(
SharedBitmap       23 content/child/child_shared_bitmap_manager.h   virtual scoped_ptr<cc::SharedBitmap> GetSharedBitmapFromId(
SharedBitmap       26 content/child/child_shared_bitmap_manager.h   virtual scoped_ptr<cc::SharedBitmap> GetBitmapForSharedMemory(
SharedBitmap       30 content/child/child_shared_bitmap_manager.h   void FreeSharedMemory(cc::SharedBitmap* bitmap);
SharedBitmap       31 content/child/child_shared_bitmap_manager.h   void ReleaseSharedBitmap(cc::SharedBitmap*);
SharedBitmap       35 content/common/host_shared_bitmap_manager.cc                       cc::SharedBitmap* bitmap) {}
SharedBitmap       47 content/common/host_shared_bitmap_manager.cc scoped_ptr<cc::SharedBitmap> HostSharedBitmapManager::AllocateSharedBitmap(
SharedBitmap       51 content/common/host_shared_bitmap_manager.cc   return scoped_ptr<cc::SharedBitmap>();
SharedBitmap       54 content/common/host_shared_bitmap_manager.cc scoped_ptr<cc::SharedBitmap> HostSharedBitmapManager::GetSharedBitmapFromId(
SharedBitmap       60 content/common/host_shared_bitmap_manager.cc     return scoped_ptr<cc::SharedBitmap>();
SharedBitmap       65 content/common/host_shared_bitmap_manager.cc   if (!cc::SharedBitmap::GetSizeInBytes(size, &bitmap_size) ||
SharedBitmap       67 content/common/host_shared_bitmap_manager.cc     return scoped_ptr<cc::SharedBitmap>();
SharedBitmap       73 content/common/host_shared_bitmap_manager.cc       return scoped_ptr<cc::SharedBitmap>();
SharedBitmap       77 content/common/host_shared_bitmap_manager.cc   scoped_ptr<cc::SharedBitmap> bitmap(new cc::SharedBitmap(
SharedBitmap       83 content/common/host_shared_bitmap_manager.cc scoped_ptr<cc::SharedBitmap> HostSharedBitmapManager::GetBitmapForSharedMemory(
SharedBitmap       85 content/common/host_shared_bitmap_manager.cc   return scoped_ptr<cc::SharedBitmap>();
SharedBitmap       48 content/common/host_shared_bitmap_manager.h   virtual scoped_ptr<cc::SharedBitmap> AllocateSharedBitmap(
SharedBitmap       50 content/common/host_shared_bitmap_manager.h   virtual scoped_ptr<cc::SharedBitmap> GetSharedBitmapFromId(
SharedBitmap       53 content/common/host_shared_bitmap_manager.h   virtual scoped_ptr<cc::SharedBitmap> GetBitmapForSharedMemory(
SharedBitmap       20 content/common/host_shared_bitmap_manager_unittest.cc   EXPECT_TRUE(cc::SharedBitmap::GetSizeInBytes(bitmap_size, &size_in_bytes));
SharedBitmap       24 content/common/host_shared_bitmap_manager_unittest.cc   cc::SharedBitmapId id = cc::SharedBitmap::GenerateId();
SharedBitmap       31 content/common/host_shared_bitmap_manager_unittest.cc   scoped_ptr<cc::SharedBitmap> large_bitmap;
SharedBitmap       35 content/common/host_shared_bitmap_manager_unittest.cc   scoped_ptr<cc::SharedBitmap> very_large_bitmap;
SharedBitmap       40 content/common/host_shared_bitmap_manager_unittest.cc   scoped_ptr<cc::SharedBitmap> negative_size_bitmap;
SharedBitmap       45 content/common/host_shared_bitmap_manager_unittest.cc   cc::SharedBitmapId id2 = cc::SharedBitmap::GenerateId();
SharedBitmap       46 content/common/host_shared_bitmap_manager_unittest.cc   scoped_ptr<cc::SharedBitmap> invalid_bitmap;
SharedBitmap       50 content/common/host_shared_bitmap_manager_unittest.cc   scoped_ptr<cc::SharedBitmap> shared_bitmap;
SharedBitmap       55 content/common/host_shared_bitmap_manager_unittest.cc   scoped_ptr<cc::SharedBitmap> large_bitmap2;
SharedBitmap       59 content/common/host_shared_bitmap_manager_unittest.cc   scoped_ptr<cc::SharedBitmap> shared_bitmap2;
SharedBitmap       79 content/common/host_shared_bitmap_manager_unittest.cc   EXPECT_TRUE(cc::SharedBitmap::GetSizeInBytes(bitmap_size, &size_in_bytes));
SharedBitmap       80 content/common/host_shared_bitmap_manager_unittest.cc   cc::SharedBitmapId id = cc::SharedBitmap::GenerateId();
SharedBitmap       90 content/common/host_shared_bitmap_manager_unittest.cc   scoped_ptr<cc::SharedBitmap> shared_bitmap;
SharedBitmap      100 content/common/host_shared_bitmap_manager_unittest.cc   EXPECT_TRUE(cc::SharedBitmap::GetSizeInBytes(bitmap_size, &size_in_bytes));
SharedBitmap      104 content/common/host_shared_bitmap_manager_unittest.cc   cc::SharedBitmapId id = cc::SharedBitmap::GenerateId();
SharedBitmap      113 content/common/host_shared_bitmap_manager_unittest.cc   scoped_ptr<cc::SharedBitmap> shared_bitmap;
SharedBitmap      119 content/common/host_shared_bitmap_manager_unittest.cc   scoped_ptr<cc::SharedBitmap> shared_bitmap2;
SharedBitmap      134 content/common/host_shared_bitmap_manager_unittest.cc   EXPECT_TRUE(cc::SharedBitmap::GetSizeInBytes(bitmap_size, &size_in_bytes));
SharedBitmap      138 content/common/host_shared_bitmap_manager_unittest.cc   cc::SharedBitmapId id = cc::SharedBitmap::GenerateId();
SharedBitmap      152 content/common/host_shared_bitmap_manager_unittest.cc   scoped_ptr<cc::SharedBitmap> shared_bitmap;
SharedBitmap      234 content/renderer/npapi/webplugin_delegate_proxy.cc WebPluginDelegateProxy::SharedBitmap::SharedBitmap() {}
SharedBitmap      236 content/renderer/npapi/webplugin_delegate_proxy.cc WebPluginDelegateProxy::SharedBitmap::~SharedBitmap() {}
SharedBitmap      152 content/renderer/npapi/webplugin_delegate_proxy.h     SharedBitmap();
SharedBitmap      153 content/renderer/npapi/webplugin_delegate_proxy.h     ~SharedBitmap();
SharedBitmap      298 content/renderer/npapi/webplugin_delegate_proxy.h   SharedBitmap transport_stores_[2];