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 "webkit/glue/webkitplatformsupport_impl.h" | 5 #include "webkit/glue/webkitplatformsupport_impl.h" |
6 | 6 |
7 #include <math.h> | 7 #include <math.h> |
8 | 8 |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
(...skipping 11 matching lines...) Expand all Loading... |
22 #include "base/string_util.h" | 22 #include "base/string_util.h" |
23 #include "base/strings/string_number_conversions.h" | 23 #include "base/strings/string_number_conversions.h" |
24 #include "base/synchronization/lock.h" | 24 #include "base/synchronization/lock.h" |
25 #include "base/sys_info.h" | 25 #include "base/sys_info.h" |
26 #include "base/time.h" | 26 #include "base/time.h" |
27 #include "base/utf_string_conversions.h" | 27 #include "base/utf_string_conversions.h" |
28 #include "grit/webkit_chromium_resources.h" | 28 #include "grit/webkit_chromium_resources.h" |
29 #include "grit/webkit_resources.h" | 29 #include "grit/webkit_resources.h" |
30 #include "grit/webkit_strings.h" | 30 #include "grit/webkit_strings.h" |
31 #include "net/base/net_errors.h" | 31 #include "net/base/net_errors.h" |
32 #include "third_party/WebKit/Source/Platform/chromium/public/WebCookie.h" | 32 #include "third_party/WebKit/public/platform/WebCookie.h" |
33 #include "third_party/WebKit/Source/Platform/chromium/public/WebData.h" | 33 #include "third_party/WebKit/public/platform/WebData.h" |
34 #include "third_party/WebKit/Source/Platform/chromium/public/WebDiscardableMemor
y.h" | 34 #include "third_party/WebKit/public/platform/WebDiscardableMemory.h" |
35 #include "third_party/WebKit/Source/Platform/chromium/public/WebGestureCurve.h" | 35 #include "third_party/WebKit/public/platform/WebGestureCurve.h" |
36 #include "third_party/WebKit/Source/Platform/chromium/public/WebPluginListBuilde
r.h" | 36 #include "third_party/WebKit/public/platform/WebPluginListBuilder.h" |
37 #include "third_party/WebKit/Source/Platform/chromium/public/WebString.h" | 37 #include "third_party/WebKit/public/platform/WebString.h" |
38 #include "third_party/WebKit/Source/Platform/chromium/public/WebURL.h" | 38 #include "third_party/WebKit/public/platform/WebURL.h" |
39 #include "third_party/WebKit/Source/Platform/chromium/public/WebVector.h" | 39 #include "third_party/WebKit/public/platform/WebVector.h" |
40 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFrameClient.h" | 40 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFrameClient.h" |
41 #include "third_party/WebKit/Source/WebKit/chromium/public/WebInputEvent.h" | 41 #include "third_party/WebKit/Source/WebKit/chromium/public/WebInputEvent.h" |
42 #include "third_party/WebKit/Source/WebKit/chromium/public/WebScreenInfo.h" | 42 #include "third_party/WebKit/Source/WebKit/chromium/public/WebScreenInfo.h" |
43 #include "ui/base/layout.h" | 43 #include "ui/base/layout.h" |
44 #include "webkit/base/file_path_string_conversions.h" | 44 #include "webkit/base/file_path_string_conversions.h" |
45 #include "webkit/glue/fling_curve_configuration.h" | 45 #include "webkit/glue/fling_curve_configuration.h" |
46 #include "webkit/glue/touch_fling_gesture_curve.h" | 46 #include "webkit/glue/touch_fling_gesture_curve.h" |
47 #include "webkit/glue/web_discardable_memory_impl.h" | 47 #include "webkit/glue/web_discardable_memory_impl.h" |
48 #include "webkit/glue/webkit_glue.h" | 48 #include "webkit/glue/webkit_glue.h" |
49 #include "webkit/glue/websocketstreamhandle_impl.h" | 49 #include "webkit/glue/websocketstreamhandle_impl.h" |
(...skipping 942 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
992 } | 992 } |
993 | 993 |
994 #if defined(OS_ANDROID) | 994 #if defined(OS_ANDROID) |
995 webkit_media::WebAudioMediaCodecRunner | 995 webkit_media::WebAudioMediaCodecRunner |
996 WebKitPlatformSupportImpl::GetWebAudioMediaCodecRunner() { | 996 WebKitPlatformSupportImpl::GetWebAudioMediaCodecRunner() { |
997 return base::Bind(&NullRunWebAudioMediaCodec); | 997 return base::Bind(&NullRunWebAudioMediaCodec); |
998 } | 998 } |
999 #endif | 999 #endif |
1000 | 1000 |
1001 } // namespace webkit_glue | 1001 } // namespace webkit_glue |
OLD | NEW |