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

Unified Diff: content/browser/renderer_host/resource_dispatcher_host.cc

Issue 8342048: Make NotificationService an interface in the content namespace, and switch callers to use it. Mov... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 2 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/browser/renderer_host/resource_dispatcher_host.cc
===================================================================
--- content/browser/renderer_host/resource_dispatcher_host.cc (revision 106380)
+++ content/browser/renderer_host/resource_dispatcher_host.cc (working copy)
@@ -51,7 +51,7 @@
#include "content/browser/ssl/ssl_client_auth_handler.h"
#include "content/browser/ssl/ssl_manager.h"
#include "content/browser/worker_host/worker_service.h"
-#include "content/common/notification_service.h"
+#include "content/public/browser/notification_service.h"
#include "content/common/resource_messages.h"
#include "content/common/view_messages.h"
#include "content/public/browser/content_browser_client.h"
@@ -1904,7 +1904,7 @@
RenderViewHost::FromID(render_process_id, render_view_id);
if (rvh) {
RenderViewHostDelegate* rvhd = rvh->delegate();
- NotificationService::current()->Notify(
+ content::NotificationService::current()->Notify(
type, content::Source<RenderViewHostDelegate>(rvhd),
content::Details<T>(detail));
}

Powered by Google App Engine
This is Rietveld 408576698