| 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 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 77 #include "gpu/config/gpu_info.h" | 77 #include "gpu/config/gpu_info.h" |
| 78 #include "gpu/ipc/client/gpu_channel_host.h" | 78 #include "gpu/ipc/client/gpu_channel_host.h" |
| 79 #include "gpu/ipc/common/gpu_stream_constants.h" | 79 #include "gpu/ipc/common/gpu_stream_constants.h" |
| 80 #include "ipc/ipc_sync_message_filter.h" | 80 #include "ipc/ipc_sync_message_filter.h" |
| 81 #include "media/audio/audio_output_device.h" | 81 #include "media/audio/audio_output_device.h" |
| 82 #include "media/base/audio_hardware_config.h" | 82 #include "media/base/audio_hardware_config.h" |
| 83 #include "media/base/mime_util.h" | 83 #include "media/base/mime_util.h" |
| 84 #include "media/blink/webcontentdecryptionmodule_impl.h" | 84 #include "media/blink/webcontentdecryptionmodule_impl.h" |
| 85 #include "media/filters/stream_parser_factory.h" | 85 #include "media/filters/stream_parser_factory.h" |
| 86 #include "mojo/common/common_type_converters.h" | 86 #include "mojo/common/common_type_converters.h" |
| 87 #include "services/shell/public/cpp/interface_provider.h" | |
| 88 #include "storage/common/database/database_identifier.h" | 87 #include "storage/common/database/database_identifier.h" |
| 89 #include "storage/common/quota/quota_types.h" | 88 #include "storage/common/quota/quota_types.h" |
| 90 #include "third_party/WebKit/public/platform/BlameContext.h" | 89 #include "third_party/WebKit/public/platform/BlameContext.h" |
| 91 #include "third_party/WebKit/public/platform/FilePathConversion.h" | 90 #include "third_party/WebKit/public/platform/FilePathConversion.h" |
| 92 #include "third_party/WebKit/public/platform/URLConversion.h" | 91 #include "third_party/WebKit/public/platform/URLConversion.h" |
| 93 #include "third_party/WebKit/public/platform/WebBlobRegistry.h" | 92 #include "third_party/WebKit/public/platform/WebBlobRegistry.h" |
| 94 #include "third_party/WebKit/public/platform/WebDeviceLightListener.h" | 93 #include "third_party/WebKit/public/platform/WebDeviceLightListener.h" |
| 95 #include "third_party/WebKit/public/platform/WebFileInfo.h" | 94 #include "third_party/WebKit/public/platform/WebFileInfo.h" |
| 96 #include "third_party/WebKit/public/platform/WebGamepads.h" | 95 #include "third_party/WebKit/public/platform/WebGamepads.h" |
| 97 #include "third_party/WebKit/public/platform/WebMediaStreamCenter.h" | 96 #include "third_party/WebKit/public/platform/WebMediaStreamCenter.h" |
| (...skipping 1209 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1307 return &trial_token_validator_; | 1306 return &trial_token_validator_; |
| 1308 } | 1307 } |
| 1309 | 1308 |
| 1310 void RendererBlinkPlatformImpl::workerContextCreated( | 1309 void RendererBlinkPlatformImpl::workerContextCreated( |
| 1311 const v8::Local<v8::Context>& worker) { | 1310 const v8::Local<v8::Context>& worker) { |
| 1312 GetContentClient()->renderer()->DidInitializeWorkerContextOnWorkerThread( | 1311 GetContentClient()->renderer()->DidInitializeWorkerContextOnWorkerThread( |
| 1313 worker); | 1312 worker); |
| 1314 } | 1313 } |
| 1315 | 1314 |
| 1316 } // namespace content | 1315 } // namespace content |
| OLD | NEW |