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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
44 #include "content/child/geofencing/web_geofencing_provider_impl.h" | 44 #include "content/child/geofencing/web_geofencing_provider_impl.h" |
45 #include "content/child/navigator_connect/service_port_provider.h" | 45 #include "content/child/navigator_connect/service_port_provider.h" |
46 #include "content/child/notifications/notification_dispatcher.h" | 46 #include "content/child/notifications/notification_dispatcher.h" |
47 #include "content/child/notifications/notification_manager.h" | 47 #include "content/child/notifications/notification_manager.h" |
48 #include "content/child/permissions/permission_dispatcher.h" | 48 #include "content/child/permissions/permission_dispatcher.h" |
49 #include "content/child/permissions/permission_dispatcher_thread_proxy.h" | 49 #include "content/child/permissions/permission_dispatcher_thread_proxy.h" |
50 #include "content/child/push_messaging/push_dispatcher.h" | 50 #include "content/child/push_messaging/push_dispatcher.h" |
51 #include "content/child/push_messaging/push_provider.h" | 51 #include "content/child/push_messaging/push_provider.h" |
52 #include "content/child/thread_safe_sender.h" | 52 #include "content/child/thread_safe_sender.h" |
53 #include "content/child/web_discardable_memory_impl.h" | 53 #include "content/child/web_discardable_memory_impl.h" |
| 54 #include "content/child/web_memory_dump_provider_adapter.h" |
| 55 #include "content/child/web_process_memory_dump_impl.h" |
54 #include "content/child/web_url_loader_impl.h" | 56 #include "content/child/web_url_loader_impl.h" |
55 #include "content/child/web_url_request_util.h" | 57 #include "content/child/web_url_request_util.h" |
56 #include "content/child/websocket_bridge.h" | 58 #include "content/child/websocket_bridge.h" |
57 #include "content/child/worker_thread_registry.h" | 59 #include "content/child/worker_thread_registry.h" |
58 #include "content/public/common/content_client.h" | 60 #include "content/public/common/content_client.h" |
59 #include "net/base/data_url.h" | 61 #include "net/base/data_url.h" |
60 #include "net/base/ip_address_number.h" | 62 #include "net/base/ip_address_number.h" |
61 #include "net/base/net_errors.h" | 63 #include "net/base/net_errors.h" |
62 #include "net/base/port_util.h" | 64 #include "net/base/port_util.h" |
63 #include "third_party/WebKit/public/platform/WebData.h" | 65 #include "third_party/WebKit/public/platform/WebData.h" |
(...skipping 953 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1017 return WebString::fromUTF8(ui::KeycodeConverter::DomKeyToKeyString( | 1019 return WebString::fromUTF8(ui::KeycodeConverter::DomKeyToKeyString( |
1018 static_cast<ui::DomKey>(dom_key))); | 1020 static_cast<ui::DomKey>(dom_key))); |
1019 } | 1021 } |
1020 | 1022 |
1021 int BlinkPlatformImpl::domKeyEnumFromString(const WebString& key_string) { | 1023 int BlinkPlatformImpl::domKeyEnumFromString(const WebString& key_string) { |
1022 return static_cast<int>( | 1024 return static_cast<int>( |
1023 ui::KeycodeConverter::KeyStringToDomKey(key_string.utf8())); | 1025 ui::KeycodeConverter::KeyStringToDomKey(key_string.utf8())); |
1024 } | 1026 } |
1025 | 1027 |
1026 } // namespace content | 1028 } // namespace content |
OLD | NEW |