OLD | NEW |
---|---|
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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/renderer/renderer_blink_platform_impl.h" | 5 #include "content/renderer/renderer_blink_platform_impl.h" |
6 | 6 |
7 #include "base/command_line.h" | 7 #include "base/command_line.h" |
8 #include "base/files/file_path.h" | 8 #include "base/files/file_path.h" |
9 #include "base/lazy_instance.h" | 9 #include "base/lazy_instance.h" |
10 #include "base/logging.h" | 10 #include "base/logging.h" |
11 #include "base/memory/shared_memory.h" | 11 #include "base/memory/shared_memory.h" |
12 #include "base/message_loop/message_loop_proxy.h" | 12 #include "base/message_loop/message_loop_proxy.h" |
13 #include "base/metrics/histogram.h" | 13 #include "base/metrics/histogram.h" |
14 #include "base/numerics/safe_conversions.h" | 14 #include "base/numerics/safe_conversions.h" |
15 #include "base/strings/string_number_conversions.h" | 15 #include "base/strings/string_number_conversions.h" |
16 #include "base/strings/utf_string_conversions.h" | 16 #include "base/strings/utf_string_conversions.h" |
17 #include "content/child/database_util.h" | 17 #include "content/child/database_util.h" |
18 #include "content/child/file_info_util.h" | 18 #include "content/child/file_info_util.h" |
19 #include "content/child/fileapi/webfilesystem_impl.h" | 19 #include "content/child/fileapi/webfilesystem_impl.h" |
20 #include "content/child/indexed_db/webidbfactory_impl.h" | 20 #include "content/child/indexed_db/webidbfactory_impl.h" |
21 #include "content/child/npapi/npobject_util.h" | 21 #include "content/child/npapi/npobject_util.h" |
22 #include "content/child/quota_dispatcher.h" | 22 #include "content/child/quota_dispatcher.h" |
23 #include "content/child/quota_message_filter.h" | 23 #include "content/child/quota_message_filter.h" |
24 #include "content/child/simple_webmimeregistry_impl.h" | 24 #include "content/child/simple_webmimeregistry_impl.h" |
25 #include "content/child/thread_safe_sender.h" | 25 #include "content/child/thread_safe_sender.h" |
26 #include "content/child/web_database_observer_impl.h" | 26 #include "content/child/web_database_observer_impl.h" |
27 #include "content/child/webblobregistry_impl.h" | 27 #include "content/child/webblobregistry_impl.h" |
28 #include "content/child/webfileutilities_impl.h" | 28 #include "content/child/webfileutilities_impl.h" |
29 #include "content/child/webmessageportchannel_impl.h" | 29 #include "content/child/webmessageportchannel_impl.h" |
30 #include "content/child/webthread_impl.h" | |
Sami
2014/11/06 00:22:59
Is this needed?
alex clarke (OOO till 29th)
2014/11/06 00:40:49
Done.
| |
30 #include "content/common/file_utilities_messages.h" | 31 #include "content/common/file_utilities_messages.h" |
31 #include "content/common/gpu/client/context_provider_command_buffer.h" | 32 #include "content/common/gpu/client/context_provider_command_buffer.h" |
32 #include "content/common/gpu/client/gpu_channel_host.h" | 33 #include "content/common/gpu/client/gpu_channel_host.h" |
33 #include "content/common/gpu/client/webgraphicscontext3d_command_buffer_impl.h" | 34 #include "content/common/gpu/client/webgraphicscontext3d_command_buffer_impl.h" |
34 #include "content/common/gpu/gpu_process_launch_causes.h" | 35 #include "content/common/gpu/gpu_process_launch_causes.h" |
35 #include "content/common/mime_registry_messages.h" | 36 #include "content/common/mime_registry_messages.h" |
36 #include "content/common/view_messages.h" | 37 #include "content/common/view_messages.h" |
37 #include "content/public/common/content_switches.h" | 38 #include "content/public/common/content_switches.h" |
38 #include "content/public/common/webplugininfo.h" | 39 #include "content/public/common/webplugininfo.h" |
39 #include "content/public/renderer/content_renderer_client.h" | 40 #include "content/public/renderer/content_renderer_client.h" |
(...skipping 205 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
245 // ChildThread may not exist in some tests. | 246 // ChildThread may not exist in some tests. |
246 if (ChildThread::current()) { | 247 if (ChildThread::current()) { |
247 sync_message_filter_ = ChildThread::current()->sync_message_filter(); | 248 sync_message_filter_ = ChildThread::current()->sync_message_filter(); |
248 thread_safe_sender_ = ChildThread::current()->thread_safe_sender(); | 249 thread_safe_sender_ = ChildThread::current()->thread_safe_sender(); |
249 quota_message_filter_ = ChildThread::current()->quota_message_filter(); | 250 quota_message_filter_ = ChildThread::current()->quota_message_filter(); |
250 blob_registry_.reset(new WebBlobRegistryImpl(thread_safe_sender_.get())); | 251 blob_registry_.reset(new WebBlobRegistryImpl(thread_safe_sender_.get())); |
251 web_idb_factory_.reset(new WebIDBFactoryImpl(thread_safe_sender_.get())); | 252 web_idb_factory_.reset(new WebIDBFactoryImpl(thread_safe_sender_.get())); |
252 web_database_observer_impl_.reset( | 253 web_database_observer_impl_.reset( |
253 new WebDatabaseObserverImpl(sync_message_filter_.get())); | 254 new WebDatabaseObserverImpl(sync_message_filter_.get())); |
254 } | 255 } |
256 | |
257 main_thread_task_runner_ = renderer_scheduler_->DefaultTaskRunner(); | |
255 } | 258 } |
256 | 259 |
257 RendererBlinkPlatformImpl::~RendererBlinkPlatformImpl() { | 260 RendererBlinkPlatformImpl::~RendererBlinkPlatformImpl() { |
258 WebFileSystemImpl::DeleteThreadSpecificInstance(); | 261 WebFileSystemImpl::DeleteThreadSpecificInstance(); |
259 } | 262 } |
260 | 263 |
261 //------------------------------------------------------------------------------ | 264 //------------------------------------------------------------------------------ |
262 | 265 |
263 void RendererBlinkPlatformImpl::callOnMainThread(void (*func)(void*), | |
264 void* context) { | |
265 renderer_scheduler_->DefaultTaskRunner()->PostTask(FROM_HERE, | |
266 base::Bind(func, context)); | |
267 } | |
268 | |
269 blink::WebScheduler* RendererBlinkPlatformImpl::scheduler() { | 266 blink::WebScheduler* RendererBlinkPlatformImpl::scheduler() { |
270 return web_scheduler_.get(); | 267 return web_scheduler_.get(); |
271 } | 268 } |
272 | 269 |
273 blink::WebClipboard* RendererBlinkPlatformImpl::clipboard() { | 270 blink::WebClipboard* RendererBlinkPlatformImpl::clipboard() { |
274 blink::WebClipboard* clipboard = | 271 blink::WebClipboard* clipboard = |
275 GetContentClient()->renderer()->OverrideWebClipboard(); | 272 GetContentClient()->renderer()->OverrideWebClipboard(); |
276 if (clipboard) | 273 if (clipboard) |
277 return clipboard; | 274 return clipboard; |
278 return clipboard_.get(); | 275 return clipboard_.get(); |
(...skipping 937 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1216 //------------------------------------------------------------------------------ | 1213 //------------------------------------------------------------------------------ |
1217 | 1214 |
1218 void RendererBlinkPlatformImpl::MockBatteryStatusChangedForTesting( | 1215 void RendererBlinkPlatformImpl::MockBatteryStatusChangedForTesting( |
1219 const blink::WebBatteryStatus& status) { | 1216 const blink::WebBatteryStatus& status) { |
1220 if (!g_test_battery_status_listener) | 1217 if (!g_test_battery_status_listener) |
1221 return; | 1218 return; |
1222 g_test_battery_status_listener->updateBatteryStatus(status); | 1219 g_test_battery_status_listener->updateBatteryStatus(status); |
1223 } | 1220 } |
1224 | 1221 |
1225 } // namespace content | 1222 } // namespace content |
OLD | NEW |