OLD | NEW |
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 400 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
411 // coverage when we add a new symbol to WebLocalizedString.h in WebKit. | 411 // coverage when we add a new symbol to WebLocalizedString.h in WebKit. |
412 // After a planned WebKit patch is landed, we need to add a case statement | 412 // After a planned WebKit patch is landed, we need to add a case statement |
413 // for the added symbol here. | 413 // for the added symbol here. |
414 default: | 414 default: |
415 break; | 415 break; |
416 } | 416 } |
417 return -1; | 417 return -1; |
418 } | 418 } |
419 | 419 |
420 BlinkPlatformImpl::BlinkPlatformImpl() | 420 BlinkPlatformImpl::BlinkPlatformImpl() |
421 : main_loop_(base::MessageLoop::current()), | 421 : main_thread_task_runner_(base::MessageLoopProxy::current()), |
422 shared_timer_func_(NULL), | 422 shared_timer_func_(NULL), |
423 shared_timer_fire_time_(0.0), | 423 shared_timer_fire_time_(0.0), |
424 shared_timer_fire_time_was_set_while_suspended_(false), | 424 shared_timer_fire_time_was_set_while_suspended_(false), |
425 shared_timer_suspended_(0), | 425 shared_timer_suspended_(0), |
426 current_thread_slot_(&DestroyCurrentThread) { | 426 current_thread_slot_(&DestroyCurrentThread) { |
| 427 InternalInit(); |
| 428 } |
| 429 |
| 430 BlinkPlatformImpl::BlinkPlatformImpl( |
| 431 scoped_refptr<base::SingleThreadTaskRunner> main_thread_task_runner) |
| 432 : main_thread_task_runner_(main_thread_task_runner), |
| 433 shared_timer_func_(NULL), |
| 434 shared_timer_fire_time_(0.0), |
| 435 shared_timer_fire_time_was_set_while_suspended_(false), |
| 436 shared_timer_suspended_(0), |
| 437 current_thread_slot_(&DestroyCurrentThread) { |
| 438 // TODO(alexclarke): Use c++11 delegated constructors when allowed. |
| 439 InternalInit(); |
| 440 } |
| 441 |
| 442 void BlinkPlatformImpl::InternalInit() { |
427 // ChildThread may not exist in some tests. | 443 // ChildThread may not exist in some tests. |
428 if (ChildThread::current()) { | 444 if (ChildThread::current()) { |
429 geofencing_provider_.reset(new WebGeofencingProviderImpl( | 445 geofencing_provider_.reset(new WebGeofencingProviderImpl( |
430 ChildThread::current()->thread_safe_sender())); | 446 ChildThread::current()->thread_safe_sender())); |
431 thread_safe_sender_ = ChildThread::current()->thread_safe_sender(); | 447 thread_safe_sender_ = ChildThread::current()->thread_safe_sender(); |
432 notification_dispatcher_ = | 448 notification_dispatcher_ = |
433 ChildThread::current()->notification_dispatcher(); | 449 ChildThread::current()->notification_dispatcher(); |
434 } | 450 } |
| 451 |
| 452 if (main_thread_task_runner_.get()) { |
| 453 shared_timer_.SetTaskRunner(main_thread_task_runner_); |
| 454 } |
435 } | 455 } |
436 | 456 |
437 BlinkPlatformImpl::~BlinkPlatformImpl() { | 457 BlinkPlatformImpl::~BlinkPlatformImpl() { |
438 } | 458 } |
439 | 459 |
440 WebURLLoader* BlinkPlatformImpl::createURLLoader() { | 460 WebURLLoader* BlinkPlatformImpl::createURLLoader() { |
441 ChildThread* child_thread = ChildThread::current(); | 461 ChildThread* child_thread = ChildThread::current(); |
442 // There may be no child thread in RenderViewTests. These tests can still use | 462 // There may be no child thread in RenderViewTests. These tests can still use |
443 // data URLs to bypass the ResourceDispatcher. | 463 // data URLs to bypass the ResourceDispatcher. |
444 return new WebURLLoaderImpl( | 464 return new WebURLLoaderImpl( |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
483 blink::WebThread* BlinkPlatformImpl::createThread(const char* name) { | 503 blink::WebThread* BlinkPlatformImpl::createThread(const char* name) { |
484 return new WebThreadImpl(name); | 504 return new WebThreadImpl(name); |
485 } | 505 } |
486 | 506 |
487 blink::WebThread* BlinkPlatformImpl::currentThread() { | 507 blink::WebThread* BlinkPlatformImpl::currentThread() { |
488 WebThreadImplForMessageLoop* thread = | 508 WebThreadImplForMessageLoop* thread = |
489 static_cast<WebThreadImplForMessageLoop*>(current_thread_slot_.Get()); | 509 static_cast<WebThreadImplForMessageLoop*>(current_thread_slot_.Get()); |
490 if (thread) | 510 if (thread) |
491 return (thread); | 511 return (thread); |
492 | 512 |
493 scoped_refptr<base::MessageLoopProxy> message_loop = | 513 scoped_refptr<base::SingleThreadTaskRunner> task_runner; |
494 base::MessageLoopProxy::current(); | 514 if (main_thread_task_runner_.get() && |
495 if (!message_loop.get()) | 515 main_thread_task_runner_->BelongsToCurrentThread()) { |
| 516 task_runner = main_thread_task_runner_; |
| 517 } else { |
| 518 task_runner = base::MessageLoopProxy::current(); |
| 519 } |
| 520 |
| 521 if (!task_runner.get()) |
496 return NULL; | 522 return NULL; |
497 | 523 |
498 thread = new WebThreadImplForMessageLoop(message_loop.get()); | 524 thread = new WebThreadImplForMessageLoop(task_runner); |
499 current_thread_slot_.Set(thread); | 525 current_thread_slot_.Set(thread); |
500 return thread; | 526 return thread; |
501 } | 527 } |
502 | 528 |
503 void BlinkPlatformImpl::yieldCurrentThread() { | 529 void BlinkPlatformImpl::yieldCurrentThread() { |
504 base::PlatformThread::YieldCurrentThread(); | 530 base::PlatformThread::YieldCurrentThread(); |
505 } | 531 } |
506 | 532 |
507 blink::WebWaitableEvent* BlinkPlatformImpl::createWaitableEvent() { | 533 blink::WebWaitableEvent* BlinkPlatformImpl::createWaitableEvent() { |
508 return new WebWaitableEventImpl(); | 534 return new WebWaitableEventImpl(); |
(...skipping 476 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
985 this, &BlinkPlatformImpl::DoTimeout); | 1011 this, &BlinkPlatformImpl::DoTimeout); |
986 OnStartSharedTimer(base::TimeDelta::FromMicroseconds(interval)); | 1012 OnStartSharedTimer(base::TimeDelta::FromMicroseconds(interval)); |
987 } | 1013 } |
988 | 1014 |
989 void BlinkPlatformImpl::stopSharedTimer() { | 1015 void BlinkPlatformImpl::stopSharedTimer() { |
990 shared_timer_.Stop(); | 1016 shared_timer_.Stop(); |
991 } | 1017 } |
992 | 1018 |
993 void BlinkPlatformImpl::callOnMainThread( | 1019 void BlinkPlatformImpl::callOnMainThread( |
994 void (*func)(void*), void* context) { | 1020 void (*func)(void*), void* context) { |
995 main_loop_->PostTask(FROM_HERE, base::Bind(func, context)); | 1021 main_thread_task_runner_->PostTask(FROM_HERE, base::Bind(func, context)); |
996 } | 1022 } |
997 | 1023 |
998 blink::WebGestureCurve* BlinkPlatformImpl::createFlingAnimationCurve( | 1024 blink::WebGestureCurve* BlinkPlatformImpl::createFlingAnimationCurve( |
999 blink::WebGestureDevice device_source, | 1025 blink::WebGestureDevice device_source, |
1000 const blink::WebFloatPoint& velocity, | 1026 const blink::WebFloatPoint& velocity, |
1001 const blink::WebSize& cumulative_scroll) { | 1027 const blink::WebSize& cumulative_scroll) { |
1002 auto curve = WebGestureCurveImpl::CreateFromDefaultPlatformCurve( | 1028 auto curve = WebGestureCurveImpl::CreateFromDefaultPlatformCurve( |
1003 gfx::Vector2dF(velocity.x, velocity.y), | 1029 gfx::Vector2dF(velocity.x, velocity.y), |
1004 gfx::Vector2dF(cumulative_scroll.width, cumulative_scroll.height)); | 1030 gfx::Vector2dF(cumulative_scroll.width, cumulative_scroll.height)); |
1005 return curve.release(); | 1031 return curve.release(); |
(...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1214 } | 1240 } |
1215 | 1241 |
1216 // static | 1242 // static |
1217 void BlinkPlatformImpl::DestroyCurrentThread(void* thread) { | 1243 void BlinkPlatformImpl::DestroyCurrentThread(void* thread) { |
1218 WebThreadImplForMessageLoop* impl = | 1244 WebThreadImplForMessageLoop* impl = |
1219 static_cast<WebThreadImplForMessageLoop*>(thread); | 1245 static_cast<WebThreadImplForMessageLoop*>(thread); |
1220 delete impl; | 1246 delete impl; |
1221 } | 1247 } |
1222 | 1248 |
1223 } // namespace content | 1249 } // namespace content |
OLD | NEW |