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 24 matching lines...) Expand all Loading... |
35 #include "third_party/WebKit/Source/Platform/chromium/public/WebGestureCurve.h" | 35 #include "third_party/WebKit/Source/Platform/chromium/public/WebGestureCurve.h" |
36 #include "third_party/WebKit/Source/Platform/chromium/public/WebPluginListBuilde
r.h" | 36 #include "third_party/WebKit/Source/Platform/chromium/public/WebPluginListBuilde
r.h" |
37 #include "third_party/WebKit/Source/Platform/chromium/public/WebString.h" | 37 #include "third_party/WebKit/Source/Platform/chromium/public/WebString.h" |
38 #include "third_party/WebKit/Source/Platform/chromium/public/WebURL.h" | 38 #include "third_party/WebKit/Source/Platform/chromium/public/WebURL.h" |
39 #include "third_party/WebKit/Source/Platform/chromium/public/WebVector.h" | 39 #include "third_party/WebKit/Source/Platform/chromium/public/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/common/user_agent/user_agent.h" |
45 #include "webkit/glue/fling_curve_configuration.h" | 46 #include "webkit/glue/fling_curve_configuration.h" |
46 #include "webkit/glue/touch_fling_gesture_curve.h" | 47 #include "webkit/glue/touch_fling_gesture_curve.h" |
47 #include "webkit/glue/web_discardable_memory_impl.h" | 48 #include "webkit/glue/web_discardable_memory_impl.h" |
48 #include "webkit/glue/webkit_glue.h" | 49 #include "webkit/glue/webkit_glue.h" |
49 #include "webkit/glue/websocketstreamhandle_impl.h" | 50 #include "webkit/glue/websocketstreamhandle_impl.h" |
50 #include "webkit/glue/webthread_impl.h" | 51 #include "webkit/glue/webthread_impl.h" |
51 #include "webkit/glue/weburlloader_impl.h" | 52 #include "webkit/glue/weburlloader_impl.h" |
52 #include "webkit/glue/worker_task_runner.h" | 53 #include "webkit/glue/worker_task_runner.h" |
53 #include "webkit/media/audio_decoder.h" | 54 #include "webkit/media/audio_decoder.h" |
54 #include "webkit/plugins/npapi/plugin_instance.h" | 55 #include "webkit/plugins/npapi/plugin_instance.h" |
55 #include "webkit/plugins/webplugininfo.h" | 56 #include "webkit/plugins/webplugininfo.h" |
56 #include "webkit/user_agent/user_agent.h" | |
57 | 57 |
58 #if defined(OS_ANDROID) | 58 #if defined(OS_ANDROID) |
59 #include "webkit/glue/fling_animator_impl_android.h" | 59 #include "webkit/glue/fling_animator_impl_android.h" |
60 #endif | 60 #endif |
61 | 61 |
62 using WebKit::WebAudioBus; | 62 using WebKit::WebAudioBus; |
63 using WebKit::WebCookie; | 63 using WebKit::WebCookie; |
64 using WebKit::WebData; | 64 using WebKit::WebData; |
65 using WebKit::WebFallbackThemeEngine; | 65 using WebKit::WebFallbackThemeEngine; |
66 using WebKit::WebLocalizedString; | 66 using WebKit::WebLocalizedString; |
(...skipping 930 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
997 } | 997 } |
998 | 998 |
999 #if defined(OS_ANDROID) | 999 #if defined(OS_ANDROID) |
1000 webkit_media::WebAudioMediaCodecRunner | 1000 webkit_media::WebAudioMediaCodecRunner |
1001 WebKitPlatformSupportImpl::GetWebAudioMediaCodecRunner() { | 1001 WebKitPlatformSupportImpl::GetWebAudioMediaCodecRunner() { |
1002 return base::Bind(&NullRunWebAudioMediaCodec); | 1002 return base::Bind(&NullRunWebAudioMediaCodec); |
1003 } | 1003 } |
1004 #endif | 1004 #endif |
1005 | 1005 |
1006 } // namespace webkit_glue | 1006 } // namespace webkit_glue |
OLD | NEW |