diff options
Diffstat (limited to 'content/child/child_shared_bitmap_manager.cc')
-rw-r--r-- | content/child/child_shared_bitmap_manager.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/content/child/child_shared_bitmap_manager.cc b/content/child/child_shared_bitmap_manager.cc index 5cccb6d36..73395da 100644 --- a/content/child/child_shared_bitmap_manager.cc +++ b/content/child/child_shared_bitmap_manager.cc @@ -6,7 +6,7 @@ #include "base/debug/alias.h" #include "base/process/process_metrics.h" -#include "content/child/child_thread.h" +#include "content/child/child_thread_impl.h" #include "content/common/child_process_messages.h" #include "ui/gfx/geometry/size.h" @@ -111,7 +111,7 @@ ChildSharedBitmapManager::AllocateSharedMemoryBitmap(const gfx::Size& size) { if (!memory->Map(memory_size)) CHECK(false); #else - memory = ChildThread::AllocateSharedMemory(memory_size, sender_.get()); + memory = ChildThreadImpl::AllocateSharedMemory(memory_size, sender_.get()); #if defined(OS_WIN) if (!memory) CollectMemoryUsageAndDie(size); |