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 25 matching lines...) Expand all Loading... |
36 #include "third_party/WebKit/public/platform/WebDiscardableMemory.h" | 36 #include "third_party/WebKit/public/platform/WebDiscardableMemory.h" |
37 #include "third_party/WebKit/public/platform/WebGestureCurve.h" | 37 #include "third_party/WebKit/public/platform/WebGestureCurve.h" |
38 #include "third_party/WebKit/public/platform/WebPluginListBuilder.h" | 38 #include "third_party/WebKit/public/platform/WebPluginListBuilder.h" |
39 #include "third_party/WebKit/public/platform/WebString.h" | 39 #include "third_party/WebKit/public/platform/WebString.h" |
40 #include "third_party/WebKit/public/platform/WebURL.h" | 40 #include "third_party/WebKit/public/platform/WebURL.h" |
41 #include "third_party/WebKit/public/platform/WebVector.h" | 41 #include "third_party/WebKit/public/platform/WebVector.h" |
42 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFrameClient.h" | 42 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFrameClient.h" |
43 #include "third_party/WebKit/Source/WebKit/chromium/public/WebInputEvent.h" | 43 #include "third_party/WebKit/Source/WebKit/chromium/public/WebInputEvent.h" |
44 #include "third_party/WebKit/Source/WebKit/chromium/public/WebScreenInfo.h" | 44 #include "third_party/WebKit/Source/WebKit/chromium/public/WebScreenInfo.h" |
45 #include "ui/base/layout.h" | 45 #include "ui/base/layout.h" |
46 #include "webkit/base/file_path_string_conversions.h" | 46 #include "webkit/common/base/file_path_string_conversions.h" |
47 #include "webkit/common/user_agent/user_agent.h" | 47 #include "webkit/common/user_agent/user_agent.h" |
48 #include "webkit/glue/fling_curve_configuration.h" | 48 #include "webkit/glue/fling_curve_configuration.h" |
49 #include "webkit/glue/touch_fling_gesture_curve.h" | 49 #include "webkit/glue/touch_fling_gesture_curve.h" |
50 #include "webkit/glue/web_discardable_memory_impl.h" | 50 #include "webkit/glue/web_discardable_memory_impl.h" |
51 #include "webkit/glue/webkit_glue.h" | 51 #include "webkit/glue/webkit_glue.h" |
52 #include "webkit/glue/websocketstreamhandle_impl.h" | 52 #include "webkit/glue/websocketstreamhandle_impl.h" |
53 #include "webkit/glue/webthread_impl.h" | 53 #include "webkit/glue/webthread_impl.h" |
54 #include "webkit/glue/weburlloader_impl.h" | 54 #include "webkit/glue/weburlloader_impl.h" |
55 #include "webkit/glue/worker_task_runner.h" | 55 #include "webkit/glue/worker_task_runner.h" |
56 #include "webkit/plugins/npapi/plugin_instance.h" | 56 #include "webkit/plugins/npapi/plugin_instance.h" |
(...skipping 959 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1016 } | 1016 } |
1017 | 1017 |
1018 #if defined(OS_ANDROID) | 1018 #if defined(OS_ANDROID) |
1019 webkit_media::WebAudioMediaCodecRunner | 1019 webkit_media::WebAudioMediaCodecRunner |
1020 WebKitPlatformSupportImpl::GetWebAudioMediaCodecRunner() { | 1020 WebKitPlatformSupportImpl::GetWebAudioMediaCodecRunner() { |
1021 return base::Bind(&NullRunWebAudioMediaCodec); | 1021 return base::Bind(&NullRunWebAudioMediaCodec); |
1022 } | 1022 } |
1023 #endif | 1023 #endif |
1024 | 1024 |
1025 } // namespace webkit_glue | 1025 } // namespace webkit_glue |
OLD | NEW |