| 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_blink_platform_impl.h" | 5 #include "content/renderer/renderer_blink_platform_impl.h" |
| 6 | 6 |
| 7 #include <utility> | 7 #include <utility> |
| 8 | 8 |
| 9 #include "base/command_line.h" | 9 #include "base/command_line.h" |
| 10 #include "base/files/file_path.h" | 10 #include "base/files/file_path.h" |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 97 #include "third_party/WebKit/public/platform/WebMediaStreamCenterClient.h" | 97 #include "third_party/WebKit/public/platform/WebMediaStreamCenterClient.h" |
| 98 #include "third_party/WebKit/public/platform/WebPluginListBuilder.h" | 98 #include "third_party/WebKit/public/platform/WebPluginListBuilder.h" |
| 99 #include "third_party/WebKit/public/platform/WebSecurityOrigin.h" | 99 #include "third_party/WebKit/public/platform/WebSecurityOrigin.h" |
| 100 #include "third_party/WebKit/public/platform/WebURL.h" | 100 #include "third_party/WebKit/public/platform/WebURL.h" |
| 101 #include "third_party/WebKit/public/platform/WebVector.h" | 101 #include "third_party/WebKit/public/platform/WebVector.h" |
| 102 #include "third_party/WebKit/public/platform/modules/device_orientation/WebDevic
eMotionListener.h" | 102 #include "third_party/WebKit/public/platform/modules/device_orientation/WebDevic
eMotionListener.h" |
| 103 #include "third_party/WebKit/public/platform/modules/device_orientation/WebDevic
eOrientationListener.h" | 103 #include "third_party/WebKit/public/platform/modules/device_orientation/WebDevic
eOrientationListener.h" |
| 104 #include "ui/gfx/color_profile.h" | 104 #include "ui/gfx/color_profile.h" |
| 105 #include "url/gurl.h" | 105 #include "url/gurl.h" |
| 106 | 106 |
| 107 #if defined(OS_ANDROID) | |
| 108 #include "content/renderer/android/synchronous_compositor_factory.h" | |
| 109 #include "gpu/blink/webgraphicscontext3d_in_process_command_buffer_impl.h" | |
| 110 #endif | |
| 111 | |
| 112 #if defined(OS_MACOSX) | 107 #if defined(OS_MACOSX) |
| 113 #include "content/common/mac/font_descriptor.h" | 108 #include "content/common/mac/font_descriptor.h" |
| 114 #include "content/common/mac/font_loader.h" | 109 #include "content/common/mac/font_loader.h" |
| 115 #include "content/renderer/webscrollbarbehavior_impl_mac.h" | 110 #include "content/renderer/webscrollbarbehavior_impl_mac.h" |
| 116 #include "third_party/WebKit/public/platform/mac/WebSandboxSupport.h" | 111 #include "third_party/WebKit/public/platform/mac/WebSandboxSupport.h" |
| 117 #endif | 112 #endif |
| 118 | 113 |
| 119 #if defined(OS_POSIX) | 114 #if defined(OS_POSIX) |
| 120 #include "base/file_descriptor_posix.h" | 115 #include "base/file_descriptor_posix.h" |
| 121 #if !defined(OS_MACOSX) && !defined(OS_ANDROID) | 116 #if !defined(OS_MACOSX) && !defined(OS_ANDROID) |
| (...skipping 1175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1297 } | 1292 } |
| 1298 | 1293 |
| 1299 //------------------------------------------------------------------------------ | 1294 //------------------------------------------------------------------------------ |
| 1300 | 1295 |
| 1301 blink::WebTrialTokenValidator* | 1296 blink::WebTrialTokenValidator* |
| 1302 RendererBlinkPlatformImpl::trialTokenValidator() { | 1297 RendererBlinkPlatformImpl::trialTokenValidator() { |
| 1303 return &trial_token_validator_; | 1298 return &trial_token_validator_; |
| 1304 } | 1299 } |
| 1305 | 1300 |
| 1306 } // namespace content | 1301 } // namespace content |
| OLD | NEW |