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 <memory> | 9 #include <memory> |
10 #include <vector> | 10 #include <vector> |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
45 #include "content/child/push_messaging/push_provider.h" | 45 #include "content/child/push_messaging/push_provider.h" |
46 #include "content/child/thread_safe_sender.h" | 46 #include "content/child/thread_safe_sender.h" |
47 #include "content/child/web_url_loader_impl.h" | 47 #include "content/child/web_url_loader_impl.h" |
48 #include "content/child/web_url_request_util.h" | 48 #include "content/child/web_url_request_util.h" |
49 #include "content/child/worker_thread_registry.h" | 49 #include "content/child/worker_thread_registry.h" |
50 #include "content/public/common/content_client.h" | 50 #include "content/public/common/content_client.h" |
51 #include "content/public/common/service_manager_connection.h" | 51 #include "content/public/common/service_manager_connection.h" |
52 #include "net/base/net_errors.h" | 52 #include "net/base/net_errors.h" |
53 #include "third_party/WebKit/public/platform/WebData.h" | 53 #include "third_party/WebKit/public/platform/WebData.h" |
54 #include "third_party/WebKit/public/platform/WebFloatPoint.h" | 54 #include "third_party/WebKit/public/platform/WebFloatPoint.h" |
55 #include "third_party/WebKit/public/platform/WebGestureCurve.h" | |
56 #include "third_party/WebKit/public/platform/WebSecurityOrigin.h" | 55 #include "third_party/WebKit/public/platform/WebSecurityOrigin.h" |
57 #include "third_party/WebKit/public/platform/WebString.h" | 56 #include "third_party/WebKit/public/platform/WebString.h" |
58 #include "third_party/WebKit/public/platform/WebURL.h" | 57 #include "third_party/WebKit/public/platform/WebURL.h" |
59 #include "third_party/WebKit/public/platform/scheduler/child/webthread_base.h" | 58 #include "third_party/WebKit/public/platform/scheduler/child/webthread_base.h" |
60 #include "third_party/zlib/google/compression_utils.h" | 59 #include "third_party/zlib/google/compression_utils.h" |
61 #include "ui/base/layout.h" | 60 #include "ui/base/layout.h" |
62 #include "ui/events/gestures/blink/web_gesture_curve_impl.h" | 61 #include "ui/events/gestures/blink/web_gesture_curve_impl.h" |
63 #include "ui/events/keycodes/dom/keycode_converter.h" | 62 #include "ui/events/keycodes/dom/keycode_converter.h" |
64 | 63 |
65 using blink::WebData; | 64 using blink::WebData; |
(...skipping 330 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
396 | 395 |
397 WebString BlinkPlatformImpl::UserAgent() { | 396 WebString BlinkPlatformImpl::UserAgent() { |
398 return blink::WebString::FromUTF8(GetContentClient()->GetUserAgent()); | 397 return blink::WebString::FromUTF8(GetContentClient()->GetUserAgent()); |
399 } | 398 } |
400 | 399 |
401 WebURLError BlinkPlatformImpl::CancelledError( | 400 WebURLError BlinkPlatformImpl::CancelledError( |
402 const WebURL& unreachableURL) const { | 401 const WebURL& unreachableURL) const { |
403 return CreateWebURLError(unreachableURL, false, net::ERR_ABORTED); | 402 return CreateWebURLError(unreachableURL, false, net::ERR_ABORTED); |
404 } | 403 } |
405 | 404 |
406 std::unique_ptr<blink::WebThread> BlinkPlatformImpl::CreateThread( | 405 blink::WebThread* BlinkPlatformImpl::CreateThread(const char* name) { |
407 const char* name) { | |
408 std::unique_ptr<blink::scheduler::WebThreadBase> thread = | 406 std::unique_ptr<blink::scheduler::WebThreadBase> thread = |
409 blink::scheduler::WebThreadBase::CreateWorkerThread( | 407 blink::scheduler::WebThreadBase::CreateWorkerThread( |
410 name, base::Thread::Options()); | 408 name, base::Thread::Options()); |
411 thread->Init(); | 409 thread->Init(); |
412 WaitUntilWebThreadTLSUpdate(thread.get()); | 410 WaitUntilWebThreadTLSUpdate(thread.get()); |
413 return std::move(thread); | 411 return thread.release(); |
414 } | 412 } |
415 | 413 |
416 void BlinkPlatformImpl::SetCompositorThread( | 414 void BlinkPlatformImpl::SetCompositorThread( |
417 blink::scheduler::WebThreadBase* compositor_thread) { | 415 blink::scheduler::WebThreadBase* compositor_thread) { |
418 compositor_thread_ = compositor_thread; | 416 compositor_thread_ = compositor_thread; |
419 if (compositor_thread_) | 417 if (compositor_thread_) |
420 WaitUntilWebThreadTLSUpdate(compositor_thread_); | 418 WaitUntilWebThreadTLSUpdate(compositor_thread_); |
421 } | 419 } |
422 | 420 |
423 blink::WebThread* BlinkPlatformImpl::CurrentThread() { | 421 blink::WebThread* BlinkPlatformImpl::CurrentThread() { |
(...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
676 values.push_back(value1.Utf16()); | 674 values.push_back(value1.Utf16()); |
677 values.push_back(value2.Utf16()); | 675 values.push_back(value2.Utf16()); |
678 return WebString::FromUTF16(base::ReplaceStringPlaceholders( | 676 return WebString::FromUTF16(base::ReplaceStringPlaceholders( |
679 GetContentClient()->GetLocalizedString(message_id), values, NULL)); | 677 GetContentClient()->GetLocalizedString(message_id), values, NULL)); |
680 } | 678 } |
681 | 679 |
682 blink::WebThread* BlinkPlatformImpl::CompositorThread() const { | 680 blink::WebThread* BlinkPlatformImpl::CompositorThread() const { |
683 return compositor_thread_; | 681 return compositor_thread_; |
684 } | 682 } |
685 | 683 |
686 std::unique_ptr<blink::WebGestureCurve> | 684 blink::WebGestureCurve* BlinkPlatformImpl::CreateFlingAnimationCurve( |
687 BlinkPlatformImpl::CreateFlingAnimationCurve( | |
688 blink::WebGestureDevice device_source, | 685 blink::WebGestureDevice device_source, |
689 const blink::WebFloatPoint& velocity, | 686 const blink::WebFloatPoint& velocity, |
690 const blink::WebSize& cumulative_scroll) { | 687 const blink::WebSize& cumulative_scroll) { |
691 return ui::WebGestureCurveImpl::CreateFromDefaultPlatformCurve( | 688 return ui::WebGestureCurveImpl::CreateFromDefaultPlatformCurve( |
692 gfx::Vector2dF(velocity.x, velocity.y), | 689 gfx::Vector2dF(velocity.x, velocity.y), |
693 gfx::Vector2dF(cumulative_scroll.width, cumulative_scroll.height), | 690 gfx::Vector2dF(cumulative_scroll.width, cumulative_scroll.height), |
694 IsMainThread()); | 691 IsMainThread()).release(); |
695 } | 692 } |
696 | 693 |
697 void BlinkPlatformImpl::DidStartWorkerThread() { | 694 void BlinkPlatformImpl::DidStartWorkerThread() { |
698 WorkerThreadRegistry::Instance()->DidStartCurrentWorkerThread(); | 695 WorkerThreadRegistry::Instance()->DidStartCurrentWorkerThread(); |
699 } | 696 } |
700 | 697 |
701 void BlinkPlatformImpl::WillStopWorkerThread() { | 698 void BlinkPlatformImpl::WillStopWorkerThread() { |
702 WorkerThreadRegistry::Instance()->WillStopCurrentWorkerThread(); | 699 WorkerThreadRegistry::Instance()->WillStopCurrentWorkerThread(); |
703 } | 700 } |
704 | 701 |
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
825 WebString BlinkPlatformImpl::DomKeyStringFromEnum(int dom_key) { | 822 WebString BlinkPlatformImpl::DomKeyStringFromEnum(int dom_key) { |
826 return WebString::FromUTF8(ui::KeycodeConverter::DomKeyToKeyString( | 823 return WebString::FromUTF8(ui::KeycodeConverter::DomKeyToKeyString( |
827 static_cast<ui::DomKey>(dom_key))); | 824 static_cast<ui::DomKey>(dom_key))); |
828 } | 825 } |
829 | 826 |
830 int BlinkPlatformImpl::DomKeyEnumFromString(const WebString& key_string) { | 827 int BlinkPlatformImpl::DomKeyEnumFromString(const WebString& key_string) { |
831 return static_cast<int>( | 828 return static_cast<int>( |
832 ui::KeycodeConverter::KeyStringToDomKey(key_string.Utf8())); | 829 ui::KeycodeConverter::KeyStringToDomKey(key_string.Utf8())); |
833 } | 830 } |
834 | 831 |
835 std::unique_ptr<blink::WebFeaturePolicy> BlinkPlatformImpl::CreateFeaturePolicy( | 832 blink::WebFeaturePolicy* BlinkPlatformImpl::CreateFeaturePolicy( |
836 const blink::WebFeaturePolicy* parent_policy, | 833 const blink::WebFeaturePolicy* parent_policy, |
837 const blink::WebParsedFeaturePolicy& container_policy, | 834 const blink::WebParsedFeaturePolicy& container_policy, |
838 const blink::WebParsedFeaturePolicy& policy_header, | 835 const blink::WebParsedFeaturePolicy& policy_header, |
839 const blink::WebSecurityOrigin& origin) { | 836 const blink::WebSecurityOrigin& origin) { |
840 std::unique_ptr<FeaturePolicy> policy = FeaturePolicy::CreateFromParentPolicy( | 837 std::unique_ptr<FeaturePolicy> policy = FeaturePolicy::CreateFromParentPolicy( |
841 static_cast<const FeaturePolicy*>(parent_policy), | 838 static_cast<const FeaturePolicy*>(parent_policy), |
842 FeaturePolicyHeaderFromWeb(container_policy), url::Origin(origin)); | 839 FeaturePolicyHeaderFromWeb(container_policy), url::Origin(origin)); |
843 policy->SetHeaderPolicy(FeaturePolicyHeaderFromWeb(policy_header)); | 840 policy->SetHeaderPolicy(FeaturePolicyHeaderFromWeb(policy_header)); |
844 return std::move(policy); | 841 return policy.release(); |
845 } | 842 } |
846 | 843 |
847 std::unique_ptr<blink::WebFeaturePolicy> | 844 blink::WebFeaturePolicy* BlinkPlatformImpl::DuplicateFeaturePolicyWithOrigin( |
848 BlinkPlatformImpl::DuplicateFeaturePolicyWithOrigin( | |
849 const blink::WebFeaturePolicy& policy, | 845 const blink::WebFeaturePolicy& policy, |
850 const blink::WebSecurityOrigin& new_origin) { | 846 const blink::WebSecurityOrigin& new_origin) { |
851 return FeaturePolicy::CreateFromPolicyWithOrigin( | 847 std::unique_ptr<FeaturePolicy> new_policy = |
852 static_cast<const FeaturePolicy&>(policy), url::Origin(new_origin)); | 848 FeaturePolicy::CreateFromPolicyWithOrigin( |
| 849 static_cast<const FeaturePolicy&>(policy), url::Origin(new_origin)); |
| 850 return new_policy.release(); |
853 } | 851 } |
854 | 852 |
855 } // namespace content | 853 } // namespace content |
OLD | NEW |