| Index: content/child/child_shared_bitmap_manager.cc
|
| diff --git a/content/child/child_shared_bitmap_manager.cc b/content/child/child_shared_bitmap_manager.cc
|
| index 5cccb6d36b6f37923dee5db8c643a65808c19ccc..73395daa8edf93985668b707304e3c45f68e7962 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);
|
|
|