| 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 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 74 #include "gpu/command_buffer/client/gles2_interface.h" | 74 #include "gpu/command_buffer/client/gles2_interface.h" |
| 75 #include "gpu/config/gpu_info.h" | 75 #include "gpu/config/gpu_info.h" |
| 76 #include "gpu/ipc/client/gpu_channel_host.h" | 76 #include "gpu/ipc/client/gpu_channel_host.h" |
| 77 #include "gpu/ipc/common/gpu_stream_constants.h" | 77 #include "gpu/ipc/common/gpu_stream_constants.h" |
| 78 #include "ipc/ipc_sync_message_filter.h" | 78 #include "ipc/ipc_sync_message_filter.h" |
| 79 #include "media/audio/audio_output_device.h" | 79 #include "media/audio/audio_output_device.h" |
| 80 #include "media/base/mime_util.h" | 80 #include "media/base/mime_util.h" |
| 81 #include "media/blink/webcontentdecryptionmodule_impl.h" | 81 #include "media/blink/webcontentdecryptionmodule_impl.h" |
| 82 #include "media/filters/stream_parser_factory.h" | 82 #include "media/filters/stream_parser_factory.h" |
| 83 #include "mojo/common/common_type_converters.h" | 83 #include "mojo/common/common_type_converters.h" |
| 84 #include "services/shell/public/cpp/interface_provider.h" | 84 #include "services/service_manager/public/cpp/interface_provider.h" |
| 85 #include "storage/common/database/database_identifier.h" | 85 #include "storage/common/database/database_identifier.h" |
| 86 #include "storage/common/quota/quota_types.h" | 86 #include "storage/common/quota/quota_types.h" |
| 87 #include "third_party/WebKit/public/platform/BlameContext.h" | 87 #include "third_party/WebKit/public/platform/BlameContext.h" |
| 88 #include "third_party/WebKit/public/platform/FilePathConversion.h" | 88 #include "third_party/WebKit/public/platform/FilePathConversion.h" |
| 89 #include "third_party/WebKit/public/platform/URLConversion.h" | 89 #include "third_party/WebKit/public/platform/URLConversion.h" |
| 90 #include "third_party/WebKit/public/platform/WebBlobRegistry.h" | 90 #include "third_party/WebKit/public/platform/WebBlobRegistry.h" |
| 91 #include "third_party/WebKit/public/platform/WebDeviceLightListener.h" | 91 #include "third_party/WebKit/public/platform/WebDeviceLightListener.h" |
| 92 #include "third_party/WebKit/public/platform/WebFileInfo.h" | 92 #include "third_party/WebKit/public/platform/WebFileInfo.h" |
| 93 #include "third_party/WebKit/public/platform/WebGamepads.h" | 93 #include "third_party/WebKit/public/platform/WebGamepads.h" |
| 94 #include "third_party/WebKit/public/platform/WebMediaStreamCenter.h" | 94 #include "third_party/WebKit/public/platform/WebMediaStreamCenter.h" |
| (...skipping 1257 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1352 return &trial_token_validator_; | 1352 return &trial_token_validator_; |
| 1353 } | 1353 } |
| 1354 | 1354 |
| 1355 void RendererBlinkPlatformImpl::workerContextCreated( | 1355 void RendererBlinkPlatformImpl::workerContextCreated( |
| 1356 const v8::Local<v8::Context>& worker) { | 1356 const v8::Local<v8::Context>& worker) { |
| 1357 GetContentClient()->renderer()->DidInitializeWorkerContextOnWorkerThread( | 1357 GetContentClient()->renderer()->DidInitializeWorkerContextOnWorkerThread( |
| 1358 worker); | 1358 worker); |
| 1359 } | 1359 } |
| 1360 | 1360 |
| 1361 } // namespace content | 1361 } // namespace content |
| OLD | NEW |