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

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

Issue 2643063002: Refactor Blink's ServiceConnector and add ability to mock in layout tests (Closed)
Patch Set: Rebase Created 3 years, 11 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
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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 #include "content/child/notifications/notification_manager.h" 43 #include "content/child/notifications/notification_manager.h"
44 #include "content/child/push_messaging/push_dispatcher.h" 44 #include "content/child/push_messaging/push_dispatcher.h"
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 "services/service_manager/public/cpp/connector.h"
54 #include "services/service_manager/public/interfaces/connector.mojom.h"
55 #include "third_party/WebKit/public/platform/WebData.h" 53 #include "third_party/WebKit/public/platform/WebData.h"
56 #include "third_party/WebKit/public/platform/WebFloatPoint.h" 54 #include "third_party/WebKit/public/platform/WebFloatPoint.h"
57 #include "third_party/WebKit/public/platform/WebSecurityOrigin.h" 55 #include "third_party/WebKit/public/platform/WebSecurityOrigin.h"
58 #include "third_party/WebKit/public/platform/WebString.h" 56 #include "third_party/WebKit/public/platform/WebString.h"
59 #include "third_party/WebKit/public/platform/WebURL.h" 57 #include "third_party/WebKit/public/platform/WebURL.h"
60 #include "third_party/WebKit/public/platform/scheduler/child/webthread_impl_for_ worker_scheduler.h" 58 #include "third_party/WebKit/public/platform/scheduler/child/webthread_impl_for_ worker_scheduler.h"
61 #include "ui/base/layout.h" 59 #include "ui/base/layout.h"
62 #include "ui/events/gestures/blink/web_gesture_curve_impl.h" 60 #include "ui/events/gestures/blink/web_gesture_curve_impl.h"
63 #include "ui/events/keycodes/dom/keycode_converter.h" 61 #include "ui/events/keycodes/dom/keycode_converter.h"
64 62
(...skipping 712 matching lines...) Expand 10 before | Expand all | Expand 10 after
777 long long BlinkPlatformImpl::databaseGetSpaceAvailableForOrigin( 775 long long BlinkPlatformImpl::databaseGetSpaceAvailableForOrigin(
778 const blink::WebSecurityOrigin& origin) { 776 const blink::WebSecurityOrigin& origin) {
779 return 0; 777 return 0;
780 } 778 }
781 779
782 bool BlinkPlatformImpl::databaseSetFileSize( 780 bool BlinkPlatformImpl::databaseSetFileSize(
783 const blink::WebString& vfs_file_name, long long size) { 781 const blink::WebString& vfs_file_name, long long size) {
784 return false; 782 return false;
785 } 783 }
786 784
787 void BlinkPlatformImpl::bindServiceConnector(
788 mojo::ScopedMessagePipeHandle remote_handle) {
789 if (!ChildThreadImpl::current())
790 return;
791
792 service_manager::mojom::ConnectorRequest chromium_request;
793 chromium_request.Bind(std::move(remote_handle));
794 ChildThreadImpl::current()
795 ->GetServiceManagerConnection()
796 ->GetConnector()
797 ->BindConnectorRequest(std::move(chromium_request));
798 }
799
800 size_t BlinkPlatformImpl::actualMemoryUsageMB() { 785 size_t BlinkPlatformImpl::actualMemoryUsageMB() {
801 return GetMemoryUsageKB() >> 10; 786 return GetMemoryUsageKB() >> 10;
802 } 787 }
803 788
804 size_t BlinkPlatformImpl::numberOfProcessors() { 789 size_t BlinkPlatformImpl::numberOfProcessors() {
805 return static_cast<size_t>(base::SysInfo::NumberOfProcessors()); 790 return static_cast<size_t>(base::SysInfo::NumberOfProcessors());
806 } 791 }
807 792
808 size_t BlinkPlatformImpl::maxDecodedImageBytes() { 793 size_t BlinkPlatformImpl::maxDecodedImageBytes() {
809 #if defined(OS_ANDROID) 794 #if defined(OS_ANDROID)
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
850 return WebString::fromUTF8(ui::KeycodeConverter::DomKeyToKeyString( 835 return WebString::fromUTF8(ui::KeycodeConverter::DomKeyToKeyString(
851 static_cast<ui::DomKey>(dom_key))); 836 static_cast<ui::DomKey>(dom_key)));
852 } 837 }
853 838
854 int BlinkPlatformImpl::domKeyEnumFromString(const WebString& key_string) { 839 int BlinkPlatformImpl::domKeyEnumFromString(const WebString& key_string) {
855 return static_cast<int>( 840 return static_cast<int>(
856 ui::KeycodeConverter::KeyStringToDomKey(key_string.utf8())); 841 ui::KeycodeConverter::KeyStringToDomKey(key_string.utf8()));
857 } 842 }
858 843
859 } // namespace content 844 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698