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

Unified Diff: content/child/child_shared_bitmap_manager.cc

Issue 897563002: Unify the three places that patch font loading for PDFium on Windows. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 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 side-by-side diff with in-line comments
Download patch
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);

Powered by Google App Engine
This is Rietveld 408576698