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/metrics/histogram.h" | 10 #include "base/metrics/histogram.h" |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
42 #include "third_party/WebKit/Source/Platform/chromium/public/WebFileInfo.h" | 42 #include "third_party/WebKit/Source/Platform/chromium/public/WebFileInfo.h" |
43 #include "third_party/WebKit/Source/Platform/chromium/public/WebGamepads.h" | 43 #include "third_party/WebKit/Source/Platform/chromium/public/WebGamepads.h" |
44 #include "third_party/WebKit/Source/Platform/chromium/public/WebHyphenator.h" | 44 #include "third_party/WebKit/Source/Platform/chromium/public/WebHyphenator.h" |
45 #include "third_party/WebKit/Source/Platform/chromium/public/WebMediaStreamCente
r.h" | 45 #include "third_party/WebKit/Source/Platform/chromium/public/WebMediaStreamCente
r.h" |
46 #include "third_party/WebKit/Source/Platform/chromium/public/WebMediaStreamCente
rClient.h" | 46 #include "third_party/WebKit/Source/Platform/chromium/public/WebMediaStreamCente
rClient.h" |
47 #include "third_party/WebKit/Source/Platform/chromium/public/WebURL.h" | 47 #include "third_party/WebKit/Source/Platform/chromium/public/WebURL.h" |
48 #include "third_party/WebKit/Source/Platform/chromium/public/WebVector.h" | 48 #include "third_party/WebKit/Source/Platform/chromium/public/WebVector.h" |
49 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFrame.h" | 49 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFrame.h" |
50 #include "third_party/WebKit/Source/WebKit/chromium/public/WebRuntimeFeatures.h" | 50 #include "third_party/WebKit/Source/WebKit/chromium/public/WebRuntimeFeatures.h" |
51 #include "webkit/base/file_path_string_conversions.h" | 51 #include "webkit/base/file_path_string_conversions.h" |
| 52 #include "webkit/common/gpu/webgraphicscontext3d_provider_impl.h" |
52 #include "webkit/glue/simple_webmimeregistry_impl.h" | 53 #include "webkit/glue/simple_webmimeregistry_impl.h" |
53 #include "webkit/glue/webclipboard_impl.h" | 54 #include "webkit/glue/webclipboard_impl.h" |
54 #include "webkit/glue/webfileutilities_impl.h" | 55 #include "webkit/glue/webfileutilities_impl.h" |
55 #include "webkit/glue/webkit_glue.h" | 56 #include "webkit/glue/webkit_glue.h" |
56 #include "webkit/gpu/webgraphicscontext3d_provider_impl.h" | |
57 | 57 |
58 #if defined(OS_WIN) | 58 #if defined(OS_WIN) |
59 #include "content/common/child_process_messages.h" | 59 #include "content/common/child_process_messages.h" |
60 #include "third_party/WebKit/Source/Platform/chromium/public/win/WebSandboxSuppo
rt.h" | 60 #include "third_party/WebKit/Source/Platform/chromium/public/win/WebSandboxSuppo
rt.h" |
61 #endif | 61 #endif |
62 | 62 |
63 #if defined(OS_MACOSX) | 63 #if defined(OS_MACOSX) |
64 #include "content/common/mac/font_descriptor.h" | 64 #include "content/common/mac/font_descriptor.h" |
65 #include "content/common/mac/font_loader.h" | 65 #include "content/common/mac/font_loader.h" |
66 #include "third_party/WebKit/Source/Platform/chromium/public/mac/WebSandboxSuppo
rt.h" | 66 #include "third_party/WebKit/Source/Platform/chromium/public/mac/WebSandboxSuppo
rt.h" |
(...skipping 831 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
898 } | 898 } |
899 | 899 |
900 //------------------------------------------------------------------------------ | 900 //------------------------------------------------------------------------------ |
901 | 901 |
902 WebKit::WebCompositorSupport* | 902 WebKit::WebCompositorSupport* |
903 RendererWebKitPlatformSupportImpl::compositorSupport() { | 903 RendererWebKitPlatformSupportImpl::compositorSupport() { |
904 return &compositor_support_; | 904 return &compositor_support_; |
905 } | 905 } |
906 | 906 |
907 } // namespace content | 907 } // namespace content |
OLD | NEW |