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

Side by Side 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, 8 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 unified diff | 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 »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "content/child/blink_platform_impl.h" 5 #include "content/child/blink_platform_impl.h"
6 6
7 #include <math.h> 7 #include <math.h>
8 8
9 #include <vector> 9 #include <vector>
10 10
(...skipping 17 matching lines...) Expand all
28 #include "blink/public/resources/grit/blink_resources.h" 28 #include "blink/public/resources/grit/blink_resources.h"
29 #include "content/app/resources/grit/content_resources.h" 29 #include "content/app/resources/grit/content_resources.h"
30 #include "content/app/strings/grit/content_strings.h" 30 #include "content/app/strings/grit/content_strings.h"
31 #include "content/child/bluetooth/web_bluetooth_impl.h" 31 #include "content/child/bluetooth/web_bluetooth_impl.h"
32 #include "content/child/child_thread_impl.h" 32 #include "content/child/child_thread_impl.h"
33 #include "content/child/content_child_helpers.h" 33 #include "content/child/content_child_helpers.h"
34 #include "content/child/geofencing/web_geofencing_provider_impl.h" 34 #include "content/child/geofencing/web_geofencing_provider_impl.h"
35 #include "content/child/navigator_connect/navigator_connect_provider.h" 35 #include "content/child/navigator_connect/navigator_connect_provider.h"
36 #include "content/child/notifications/notification_dispatcher.h" 36 #include "content/child/notifications/notification_dispatcher.h"
37 #include "content/child/notifications/notification_manager.h" 37 #include "content/child/notifications/notification_manager.h"
38 #include "content/child/permissions/permission_manager.h" 38 #include "content/child/permissions/permission_dispatcher.h"
39 #include "content/child/permissions/permission_manager_thread_proxy.h" 39 #include "content/child/permissions/permission_dispatcher_thread_proxy.h"
40 #include "content/child/push_messaging/push_dispatcher.h" 40 #include "content/child/push_messaging/push_dispatcher.h"
41 #include "content/child/push_messaging/push_provider.h" 41 #include "content/child/push_messaging/push_provider.h"
42 #include "content/child/thread_safe_sender.h" 42 #include "content/child/thread_safe_sender.h"
43 #include "content/child/web_discardable_memory_impl.h" 43 #include "content/child/web_discardable_memory_impl.h"
44 #include "content/child/web_gesture_curve_impl.h" 44 #include "content/child/web_gesture_curve_impl.h"
45 #include "content/child/web_url_loader_impl.h" 45 #include "content/child/web_url_loader_impl.h"
46 #include "content/child/websocket_bridge.h" 46 #include "content/child/websocket_bridge.h"
47 #include "content/child/webthread_impl.h" 47 #include "content/child/webthread_impl.h"
48 #include "content/child/worker_task_runner.h" 48 #include "content/child/worker_task_runner.h"
49 #include "content/public/common/content_client.h" 49 #include "content/public/common/content_client.h"
(...skipping 387 matching lines...) Expand 10 before | Expand all | Expand 10 after
437 // ChildThread may not exist in some tests. 437 // ChildThread may not exist in some tests.
438 if (ChildThreadImpl::current()) { 438 if (ChildThreadImpl::current()) {
439 geofencing_provider_.reset(new WebGeofencingProviderImpl( 439 geofencing_provider_.reset(new WebGeofencingProviderImpl(
440 ChildThreadImpl::current()->thread_safe_sender())); 440 ChildThreadImpl::current()->thread_safe_sender()));
441 bluetooth_.reset( 441 bluetooth_.reset(
442 new WebBluetoothImpl(ChildThreadImpl::current()->thread_safe_sender())); 442 new WebBluetoothImpl(ChildThreadImpl::current()->thread_safe_sender()));
443 thread_safe_sender_ = ChildThreadImpl::current()->thread_safe_sender(); 443 thread_safe_sender_ = ChildThreadImpl::current()->thread_safe_sender();
444 notification_dispatcher_ = 444 notification_dispatcher_ =
445 ChildThreadImpl::current()->notification_dispatcher(); 445 ChildThreadImpl::current()->notification_dispatcher();
446 push_dispatcher_ = ChildThreadImpl::current()->push_dispatcher(); 446 push_dispatcher_ = ChildThreadImpl::current()->push_dispatcher();
447 permission_client_.reset(new PermissionManager( 447 permission_client_.reset(new PermissionDispatcher(
448 ChildThreadImpl::current()->service_registry())); 448 ChildThreadImpl::current()->service_registry()));
449 } 449 }
450 450
451 if (main_thread_task_runner_.get()) { 451 if (main_thread_task_runner_.get()) {
452 shared_timer_.SetTaskRunner(main_thread_task_runner_); 452 shared_timer_.SetTaskRunner(main_thread_task_runner_);
453 } 453 }
454 } 454 }
455 455
456 void BlinkPlatformImpl::UpdateWebThreadTLS(blink::WebThread* thread) { 456 void BlinkPlatformImpl::UpdateWebThreadTLS(blink::WebThread* thread) {
457 DCHECK(!current_thread_slot_.Get()); 457 DCHECK(!current_thread_slot_.Get());
(...skipping 625 matching lines...) Expand 10 before | Expand all | Expand 10 after
1083 thread_safe_sender_.get(), main_thread_task_runner_); 1083 thread_safe_sender_.get(), main_thread_task_runner_);
1084 } 1084 }
1085 1085
1086 blink::WebPermissionClient* BlinkPlatformImpl::permissionClient() { 1086 blink::WebPermissionClient* BlinkPlatformImpl::permissionClient() {
1087 if (!permission_client_.get()) 1087 if (!permission_client_.get())
1088 return nullptr; 1088 return nullptr;
1089 1089
1090 if (IsMainThread()) 1090 if (IsMainThread())
1091 return permission_client_.get(); 1091 return permission_client_.get();
1092 1092
1093 return PermissionManagerThreadProxy::GetThreadInstance( 1093 return PermissionDispatcherThreadProxy::GetThreadInstance(
1094 main_thread_task_runner_.get(), permission_client_.get()); 1094 main_thread_task_runner_.get(), permission_client_.get());
1095 } 1095 }
1096 1096
1097 WebThemeEngine* BlinkPlatformImpl::themeEngine() { 1097 WebThemeEngine* BlinkPlatformImpl::themeEngine() {
1098 return &native_theme_engine_; 1098 return &native_theme_engine_;
1099 } 1099 }
1100 1100
1101 WebFallbackThemeEngine* BlinkPlatformImpl::fallbackThemeEngine() { 1101 WebFallbackThemeEngine* BlinkPlatformImpl::fallbackThemeEngine() {
1102 return &fallback_theme_engine_; 1102 return &fallback_theme_engine_;
1103 } 1103 }
(...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after
1255 return WebString::fromUTF8(ui::KeycodeConverter::DomCodeToCodeString( 1255 return WebString::fromUTF8(ui::KeycodeConverter::DomCodeToCodeString(
1256 static_cast<ui::DomCode>(dom_code))); 1256 static_cast<ui::DomCode>(dom_code)));
1257 } 1257 }
1258 1258
1259 int BlinkPlatformImpl::domEnumFromCodeString(const WebString& code) { 1259 int BlinkPlatformImpl::domEnumFromCodeString(const WebString& code) {
1260 return static_cast<int>(ui::KeycodeConverter::CodeStringToDomCode( 1260 return static_cast<int>(ui::KeycodeConverter::CodeStringToDomCode(
1261 code.utf8().data())); 1261 code.utf8().data()));
1262 } 1262 }
1263 1263
1264 } // namespace content 1264 } // namespace content
OLDNEW
« 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