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/WebKit/chromium/public/WebFrame.h" | 42 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFrame.h" |
43 #include "third_party/WebKit/Source/WebKit/chromium/public/WebRuntimeFeatures.h" | 43 #include "third_party/WebKit/Source/WebKit/chromium/public/WebRuntimeFeatures.h" |
44 #include "third_party/WebKit/public/platform/WebBlobRegistry.h" | 44 #include "third_party/WebKit/public/platform/WebBlobRegistry.h" |
45 #include "third_party/WebKit/public/platform/WebFileInfo.h" | 45 #include "third_party/WebKit/public/platform/WebFileInfo.h" |
46 #include "third_party/WebKit/public/platform/WebGamepads.h" | 46 #include "third_party/WebKit/public/platform/WebGamepads.h" |
47 #include "third_party/WebKit/public/platform/WebHyphenator.h" | 47 #include "third_party/WebKit/public/platform/WebHyphenator.h" |
48 #include "third_party/WebKit/public/platform/WebMediaStreamCenter.h" | 48 #include "third_party/WebKit/public/platform/WebMediaStreamCenter.h" |
49 #include "third_party/WebKit/public/platform/WebMediaStreamCenterClient.h" | 49 #include "third_party/WebKit/public/platform/WebMediaStreamCenterClient.h" |
50 #include "third_party/WebKit/public/platform/WebURL.h" | 50 #include "third_party/WebKit/public/platform/WebURL.h" |
51 #include "third_party/WebKit/public/platform/WebVector.h" | 51 #include "third_party/WebKit/public/platform/WebVector.h" |
52 #include "webkit/base/file_path_string_conversions.h" | 52 #include "webkit/common/base/file_path_string_conversions.h" |
53 #include "webkit/common/gpu/webgraphicscontext3d_provider_impl.h" | 53 #include "webkit/common/gpu/webgraphicscontext3d_provider_impl.h" |
54 #include "webkit/glue/simple_webmimeregistry_impl.h" | 54 #include "webkit/glue/simple_webmimeregistry_impl.h" |
55 #include "webkit/glue/webclipboard_impl.h" | 55 #include "webkit/glue/webclipboard_impl.h" |
56 #include "webkit/glue/webfileutilities_impl.h" | 56 #include "webkit/glue/webfileutilities_impl.h" |
57 #include "webkit/glue/webkit_glue.h" | 57 #include "webkit/glue/webkit_glue.h" |
58 | 58 |
59 #if defined(OS_WIN) | 59 #if defined(OS_WIN) |
60 #include "content/common/child_process_messages.h" | 60 #include "content/common/child_process_messages.h" |
61 #include "third_party/WebKit/public/platform/win/WebSandboxSupport.h" | 61 #include "third_party/WebKit/public/platform/win/WebSandboxSupport.h" |
62 #endif | 62 #endif |
(...skipping 834 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
897 } | 897 } |
898 | 898 |
899 //------------------------------------------------------------------------------ | 899 //------------------------------------------------------------------------------ |
900 | 900 |
901 WebKit::WebCompositorSupport* | 901 WebKit::WebCompositorSupport* |
902 RendererWebKitPlatformSupportImpl::compositorSupport() { | 902 RendererWebKitPlatformSupportImpl::compositorSupport() { |
903 return &compositor_support_; | 903 return &compositor_support_; |
904 } | 904 } |
905 | 905 |
906 } // namespace content | 906 } // namespace content |
OLD | NEW |