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 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
96 #include "third_party/WebKit/public/platform/WebGamepads.h" | 96 #include "third_party/WebKit/public/platform/WebGamepads.h" |
97 #include "third_party/WebKit/public/platform/WebMediaStreamCenter.h" | 97 #include "third_party/WebKit/public/platform/WebMediaStreamCenter.h" |
98 #include "third_party/WebKit/public/platform/WebMediaStreamCenterClient.h" | 98 #include "third_party/WebKit/public/platform/WebMediaStreamCenterClient.h" |
99 #include "third_party/WebKit/public/platform/WebPluginListBuilder.h" | 99 #include "third_party/WebKit/public/platform/WebPluginListBuilder.h" |
100 #include "third_party/WebKit/public/platform/WebSecurityOrigin.h" | 100 #include "third_party/WebKit/public/platform/WebSecurityOrigin.h" |
101 #include "third_party/WebKit/public/platform/WebURL.h" | 101 #include "third_party/WebKit/public/platform/WebURL.h" |
102 #include "third_party/WebKit/public/platform/WebVector.h" | 102 #include "third_party/WebKit/public/platform/WebVector.h" |
103 #include "third_party/WebKit/public/platform/mime_registry.mojom.h" | 103 #include "third_party/WebKit/public/platform/mime_registry.mojom.h" |
104 #include "third_party/WebKit/public/platform/modules/device_orientation/WebDevic
eMotionListener.h" | 104 #include "third_party/WebKit/public/platform/modules/device_orientation/WebDevic
eMotionListener.h" |
105 #include "third_party/WebKit/public/platform/modules/device_orientation/WebDevic
eOrientationListener.h" | 105 #include "third_party/WebKit/public/platform/modules/device_orientation/WebDevic
eOrientationListener.h" |
106 #include "ui/gfx/color_profile.h" | |
107 #include "url/gurl.h" | 106 #include "url/gurl.h" |
108 | 107 |
109 #if defined(OS_MACOSX) | 108 #if defined(OS_MACOSX) |
110 #include "content/common/mac/font_descriptor.h" | 109 #include "content/common/mac/font_descriptor.h" |
111 #include "content/common/mac/font_loader.h" | 110 #include "content/common/mac/font_loader.h" |
112 #include "content/renderer/webscrollbarbehavior_impl_mac.h" | 111 #include "content/renderer/webscrollbarbehavior_impl_mac.h" |
113 #include "third_party/WebKit/public/platform/mac/WebSandboxSupport.h" | 112 #include "third_party/WebKit/public/platform/mac/WebSandboxSupport.h" |
114 #endif | 113 #endif |
115 | 114 |
116 #if defined(OS_POSIX) | 115 #if defined(OS_POSIX) |
(...skipping 1192 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1309 return &trial_token_validator_; | 1308 return &trial_token_validator_; |
1310 } | 1309 } |
1311 | 1310 |
1312 void RendererBlinkPlatformImpl::workerContextCreated( | 1311 void RendererBlinkPlatformImpl::workerContextCreated( |
1313 const v8::Local<v8::Context>& worker) { | 1312 const v8::Local<v8::Context>& worker) { |
1314 GetContentClient()->renderer()->DidInitializeWorkerContextOnWorkerThread( | 1313 GetContentClient()->renderer()->DidInitializeWorkerContextOnWorkerThread( |
1315 worker); | 1314 worker); |
1316 } | 1315 } |
1317 | 1316 |
1318 } // namespace content | 1317 } // namespace content |
OLD | NEW |