OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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/renderer/renderer_webkitplatformsupport_impl.h" | 5 #include "content/renderer/renderer_webkitplatformsupport_impl.h" |
6 | 6 |
7 #include "base/command_line.h" | 7 #include "base/command_line.h" |
8 #include "base/files/file_path.h" | 8 #include "base/files/file_path.h" |
9 #include "base/lazy_instance.h" | 9 #include "base/lazy_instance.h" |
10 #include "base/memory/shared_memory.h" | 10 #include "base/memory/shared_memory.h" |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
63 #include "third_party/WebKit/public/platform/WebBlobRegistry.h" | 63 #include "third_party/WebKit/public/platform/WebBlobRegistry.h" |
64 #include "third_party/WebKit/public/platform/WebDeviceMotionListener.h" | 64 #include "third_party/WebKit/public/platform/WebDeviceMotionListener.h" |
65 #include "third_party/WebKit/public/platform/WebDeviceOrientationListener.h" | 65 #include "third_party/WebKit/public/platform/WebDeviceOrientationListener.h" |
66 #include "third_party/WebKit/public/platform/WebFileInfo.h" | 66 #include "third_party/WebKit/public/platform/WebFileInfo.h" |
67 #include "third_party/WebKit/public/platform/WebGamepads.h" | 67 #include "third_party/WebKit/public/platform/WebGamepads.h" |
68 #include "third_party/WebKit/public/platform/WebMediaStreamCenter.h" | 68 #include "third_party/WebKit/public/platform/WebMediaStreamCenter.h" |
69 #include "third_party/WebKit/public/platform/WebMediaStreamCenterClient.h" | 69 #include "third_party/WebKit/public/platform/WebMediaStreamCenterClient.h" |
70 #include "third_party/WebKit/public/platform/WebPluginListBuilder.h" | 70 #include "third_party/WebKit/public/platform/WebPluginListBuilder.h" |
71 #include "third_party/WebKit/public/platform/WebURL.h" | 71 #include "third_party/WebKit/public/platform/WebURL.h" |
72 #include "third_party/WebKit/public/platform/WebVector.h" | 72 #include "third_party/WebKit/public/platform/WebVector.h" |
73 #include "third_party/WebKit/public/web/WebFrame.h" | |
74 #include "third_party/WebKit/public/web/WebRuntimeFeatures.h" | |
75 #include "ui/gfx/color_profile.h" | 73 #include "ui/gfx/color_profile.h" |
76 #include "url/gurl.h" | 74 #include "url/gurl.h" |
77 #include "webkit/common/gpu/context_provider_web_context.h" | 75 #include "webkit/common/gpu/context_provider_web_context.h" |
78 #include "webkit/common/quota/quota_types.h" | 76 #include "webkit/common/quota/quota_types.h" |
79 | 77 |
80 #if defined(OS_WIN) | 78 #if defined(OS_WIN) |
81 #include "content/common/child_process_messages.h" | 79 #include "content/common/child_process_messages.h" |
82 #include "third_party/WebKit/public/platform/win/WebSandboxSupport.h" | 80 #include "third_party/WebKit/public/platform/win/WebSandboxSupport.h" |
83 #endif | 81 #endif |
84 | 82 |
(...skipping 21 matching lines...) Expand all Loading... |
106 #if defined(OS_ANDROID) | 104 #if defined(OS_ANDROID) |
107 #include "content/renderer/media/android/audio_decoder_android.h" | 105 #include "content/renderer/media/android/audio_decoder_android.h" |
108 #endif | 106 #endif |
109 | 107 |
110 using blink::Platform; | 108 using blink::Platform; |
111 using blink::WebAudioDevice; | 109 using blink::WebAudioDevice; |
112 using blink::WebBlobRegistry; | 110 using blink::WebBlobRegistry; |
113 using blink::WebDatabaseObserver; | 111 using blink::WebDatabaseObserver; |
114 using blink::WebFileInfo; | 112 using blink::WebFileInfo; |
115 using blink::WebFileSystem; | 113 using blink::WebFileSystem; |
116 using blink::WebFrame; | |
117 using blink::WebGamepads; | 114 using blink::WebGamepads; |
118 using blink::WebIDBFactory; | 115 using blink::WebIDBFactory; |
119 using blink::WebMIDIAccessor; | 116 using blink::WebMIDIAccessor; |
120 using blink::WebMediaStreamCenter; | 117 using blink::WebMediaStreamCenter; |
121 using blink::WebMediaStreamCenterClient; | 118 using blink::WebMediaStreamCenterClient; |
122 using blink::WebMimeRegistry; | 119 using blink::WebMimeRegistry; |
123 using blink::WebRTCPeerConnectionHandler; | 120 using blink::WebRTCPeerConnectionHandler; |
124 using blink::WebRTCPeerConnectionHandlerClient; | 121 using blink::WebRTCPeerConnectionHandlerClient; |
125 using blink::WebStorageNamespace; | 122 using blink::WebStorageNamespace; |
126 using blink::WebString; | 123 using blink::WebString; |
(...skipping 947 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1074 return; | 1071 return; |
1075 QuotaDispatcher::ThreadSpecificInstance( | 1072 QuotaDispatcher::ThreadSpecificInstance( |
1076 thread_safe_sender_.get(), | 1073 thread_safe_sender_.get(), |
1077 quota_message_filter_.get())->QueryStorageUsageAndQuota( | 1074 quota_message_filter_.get())->QueryStorageUsageAndQuota( |
1078 storage_partition, | 1075 storage_partition, |
1079 static_cast<quota::StorageType>(type), | 1076 static_cast<quota::StorageType>(type), |
1080 QuotaDispatcher::CreateWebStorageQuotaCallbacksWrapper(callbacks)); | 1077 QuotaDispatcher::CreateWebStorageQuotaCallbacksWrapper(callbacks)); |
1081 } | 1078 } |
1082 | 1079 |
1083 } // namespace content | 1080 } // namespace content |
OLD | NEW |