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

Unified Diff: content/child/blink_platform_impl.cc

Issue 1035223003: Rename content::PermissionManager to content::PermissionDispatcher. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: review comments Created 5 years, 9 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
« no previous file with comments | « content/child/blink_platform_impl.h ('k') | content/child/permissions/permission_dispatcher.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/child/blink_platform_impl.cc
diff --git a/content/child/blink_platform_impl.cc b/content/child/blink_platform_impl.cc
index db0ba133288ba57a86822c4526db297f489e3389..eafa1befb4c325777492f65f5c10bd830b6c78d4 100644
--- a/content/child/blink_platform_impl.cc
+++ b/content/child/blink_platform_impl.cc
@@ -35,8 +35,8 @@
#include "content/child/navigator_connect/navigator_connect_provider.h"
#include "content/child/notifications/notification_dispatcher.h"
#include "content/child/notifications/notification_manager.h"
-#include "content/child/permissions/permission_manager.h"
-#include "content/child/permissions/permission_manager_thread_proxy.h"
+#include "content/child/permissions/permission_dispatcher.h"
+#include "content/child/permissions/permission_dispatcher_thread_proxy.h"
#include "content/child/push_messaging/push_dispatcher.h"
#include "content/child/push_messaging/push_provider.h"
#include "content/child/thread_safe_sender.h"
@@ -444,7 +444,7 @@ void BlinkPlatformImpl::InternalInit() {
notification_dispatcher_ =
ChildThreadImpl::current()->notification_dispatcher();
push_dispatcher_ = ChildThreadImpl::current()->push_dispatcher();
- permission_client_.reset(new PermissionManager(
+ permission_client_.reset(new PermissionDispatcher(
ChildThreadImpl::current()->service_registry()));
}
@@ -1090,7 +1090,7 @@ blink::WebPermissionClient* BlinkPlatformImpl::permissionClient() {
if (IsMainThread())
return permission_client_.get();
- return PermissionManagerThreadProxy::GetThreadInstance(
+ return PermissionDispatcherThreadProxy::GetThreadInstance(
main_thread_task_runner_.get(), permission_client_.get());
}
« no previous file with comments | « content/child/blink_platform_impl.h ('k') | content/child/permissions/permission_dispatcher.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698