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

Side by Side Diff: content/child/blink_platform_impl.cc

Issue 2850593002: Revert of [blink] Unique pointers in Platform.h (Closed)
Patch Set: Created 3 years, 7 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/ppapi_plugin/ppapi_blink_platform_impl.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 <memory> 9 #include <memory>
10 #include <vector> 10 #include <vector>
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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 256 matching lines...) Expand 10 before | Expand all | Expand 10 after
680 values.push_back(value1.Utf16()); 678 values.push_back(value1.Utf16());
681 values.push_back(value2.Utf16()); 679 values.push_back(value2.Utf16());
682 return WebString::FromUTF16(base::ReplaceStringPlaceholders( 680 return WebString::FromUTF16(base::ReplaceStringPlaceholders(
683 GetContentClient()->GetLocalizedString(message_id), values, NULL)); 681 GetContentClient()->GetLocalizedString(message_id), values, NULL));
684 } 682 }
685 683
686 blink::WebThread* BlinkPlatformImpl::CompositorThread() const { 684 blink::WebThread* BlinkPlatformImpl::CompositorThread() const {
687 return compositor_thread_; 685 return compositor_thread_;
688 } 686 }
689 687
690 std::unique_ptr<blink::WebGestureCurve> 688 blink::WebGestureCurve* BlinkPlatformImpl::CreateFlingAnimationCurve(
691 BlinkPlatformImpl::CreateFlingAnimationCurve(
692 blink::WebGestureDevice device_source, 689 blink::WebGestureDevice device_source,
693 const blink::WebFloatPoint& velocity, 690 const blink::WebFloatPoint& velocity,
694 const blink::WebSize& cumulative_scroll) { 691 const blink::WebSize& cumulative_scroll) {
695 return ui::WebGestureCurveImpl::CreateFromDefaultPlatformCurve( 692 return ui::WebGestureCurveImpl::CreateFromDefaultPlatformCurve(
696 gfx::Vector2dF(velocity.x, velocity.y), 693 gfx::Vector2dF(velocity.x, velocity.y),
697 gfx::Vector2dF(cumulative_scroll.width, cumulative_scroll.height), 694 gfx::Vector2dF(cumulative_scroll.width, cumulative_scroll.height),
698 IsMainThread()); 695 IsMainThread()).release();
699 } 696 }
700 697
701 void BlinkPlatformImpl::DidStartWorkerThread() { 698 void BlinkPlatformImpl::DidStartWorkerThread() {
702 WorkerThreadRegistry::Instance()->DidStartCurrentWorkerThread(); 699 WorkerThreadRegistry::Instance()->DidStartCurrentWorkerThread();
703 } 700 }
704 701
705 void BlinkPlatformImpl::WillStopWorkerThread() { 702 void BlinkPlatformImpl::WillStopWorkerThread() {
706 WorkerThreadRegistry::Instance()->WillStopCurrentWorkerThread(); 703 WorkerThreadRegistry::Instance()->WillStopCurrentWorkerThread();
707 } 704 }
708 705
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after
829 WebString BlinkPlatformImpl::DomKeyStringFromEnum(int dom_key) { 826 WebString BlinkPlatformImpl::DomKeyStringFromEnum(int dom_key) {
830 return WebString::FromUTF8(ui::KeycodeConverter::DomKeyToKeyString( 827 return WebString::FromUTF8(ui::KeycodeConverter::DomKeyToKeyString(
831 static_cast<ui::DomKey>(dom_key))); 828 static_cast<ui::DomKey>(dom_key)));
832 } 829 }
833 830
834 int BlinkPlatformImpl::DomKeyEnumFromString(const WebString& key_string) { 831 int BlinkPlatformImpl::DomKeyEnumFromString(const WebString& key_string) {
835 return static_cast<int>( 832 return static_cast<int>(
836 ui::KeycodeConverter::KeyStringToDomKey(key_string.Utf8())); 833 ui::KeycodeConverter::KeyStringToDomKey(key_string.Utf8()));
837 } 834 }
838 835
839 std::unique_ptr<blink::WebFeaturePolicy> BlinkPlatformImpl::CreateFeaturePolicy( 836 blink::WebFeaturePolicy* BlinkPlatformImpl::CreateFeaturePolicy(
840 const blink::WebFeaturePolicy* parent_policy, 837 const blink::WebFeaturePolicy* parent_policy,
841 const blink::WebParsedFeaturePolicy& container_policy, 838 const blink::WebParsedFeaturePolicy& container_policy,
842 const blink::WebParsedFeaturePolicy& policy_header, 839 const blink::WebParsedFeaturePolicy& policy_header,
843 const blink::WebSecurityOrigin& origin) { 840 const blink::WebSecurityOrigin& origin) {
844 std::unique_ptr<FeaturePolicy> policy = FeaturePolicy::CreateFromParentPolicy( 841 std::unique_ptr<FeaturePolicy> policy = FeaturePolicy::CreateFromParentPolicy(
845 static_cast<const FeaturePolicy*>(parent_policy), 842 static_cast<const FeaturePolicy*>(parent_policy),
846 FeaturePolicyHeaderFromWeb(container_policy), url::Origin(origin)); 843 FeaturePolicyHeaderFromWeb(container_policy), url::Origin(origin));
847 policy->SetHeaderPolicy(FeaturePolicyHeaderFromWeb(policy_header)); 844 policy->SetHeaderPolicy(FeaturePolicyHeaderFromWeb(policy_header));
848 return std::move(policy); 845 return policy.release();
849 } 846 }
850 847
851 std::unique_ptr<blink::WebFeaturePolicy> 848 blink::WebFeaturePolicy* BlinkPlatformImpl::DuplicateFeaturePolicyWithOrigin(
852 BlinkPlatformImpl::DuplicateFeaturePolicyWithOrigin(
853 const blink::WebFeaturePolicy& policy, 849 const blink::WebFeaturePolicy& policy,
854 const blink::WebSecurityOrigin& new_origin) { 850 const blink::WebSecurityOrigin& new_origin) {
855 return FeaturePolicy::CreateFromPolicyWithOrigin( 851 std::unique_ptr<FeaturePolicy> new_policy =
856 static_cast<const FeaturePolicy&>(policy), url::Origin(new_origin)); 852 FeaturePolicy::CreateFromPolicyWithOrigin(
853 static_cast<const FeaturePolicy&>(policy), url::Origin(new_origin));
854 return new_policy.release();
857 } 855 }
858 856
859 } // namespace content 857 } // namespace content
OLDNEW
« no previous file with comments | « content/child/blink_platform_impl.h ('k') | content/ppapi_plugin/ppapi_blink_platform_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698