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

Unified Diff: content/child/notifications/notification_image_loader.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/notifications/notification_image_loader.cc
diff --git a/content/child/notifications/notification_image_loader.cc b/content/child/notifications/notification_image_loader.cc
index b2eb23ebbf608c080752701f7e199fbd4dea2ee9..c194b024c4835e26dc94d088d632315b9ee77455 100644
--- a/content/child/notifications/notification_image_loader.cc
+++ b/content/child/notifications/notification_image_loader.cc
@@ -5,7 +5,7 @@
#include "content/child/notifications/notification_image_loader.h"
#include "base/logging.h"
-#include "content/child/child_thread.h"
+#include "content/child/child_thread_impl.h"
#include "content/child/image_decoder.h"
#include "content/child/worker_task_runner.h"
#include "third_party/WebKit/public/platform/Platform.h"
@@ -29,7 +29,7 @@ NotificationImageLoader::~NotificationImageLoader() {}
void NotificationImageLoader::StartOnMainThread(const WebURL& image_url,
int worker_thread_id) {
- DCHECK(ChildThread::current());
+ DCHECK(ChildThreadImpl::current());
DCHECK(!url_loader_);
worker_thread_id_ = worker_thread_id;

Powered by Google App Engine
This is Rietveld 408576698