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 <memory> | 7 #include <memory> |
8 #include <utility> | 8 #include <utility> |
9 | 9 |
10 #include "base/command_line.h" | 10 #include "base/command_line.h" |
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
70 #include "content/renderer/webgraphicscontext3d_provider_impl.h" | 70 #include "content/renderer/webgraphicscontext3d_provider_impl.h" |
71 #include "content/renderer/webpublicsuffixlist_impl.h" | 71 #include "content/renderer/webpublicsuffixlist_impl.h" |
72 #include "gpu/command_buffer/client/gles2_interface.h" | 72 #include "gpu/command_buffer/client/gles2_interface.h" |
73 #include "gpu/config/gpu_info.h" | 73 #include "gpu/config/gpu_info.h" |
74 #include "gpu/ipc/client/gpu_channel_host.h" | 74 #include "gpu/ipc/client/gpu_channel_host.h" |
75 #include "gpu/ipc/common/gpu_stream_constants.h" | 75 #include "gpu/ipc/common/gpu_stream_constants.h" |
76 #include "ipc/ipc_sync_message_filter.h" | 76 #include "ipc/ipc_sync_message_filter.h" |
77 #include "media/audio/audio_output_device.h" | 77 #include "media/audio/audio_output_device.h" |
78 #include "media/blink/webcontentdecryptionmodule_impl.h" | 78 #include "media/blink/webcontentdecryptionmodule_impl.h" |
79 #include "media/filters/stream_parser_factory.h" | 79 #include "media/filters/stream_parser_factory.h" |
80 #include "mojo/common/common_type_converters.h" | |
81 #include "mojo/public/cpp/bindings/associated_group.h" | 80 #include "mojo/public/cpp/bindings/associated_group.h" |
82 #include "ppapi/features/features.h" | 81 #include "ppapi/features/features.h" |
83 #include "services/service_manager/public/cpp/interface_provider.h" | 82 #include "services/service_manager/public/cpp/interface_provider.h" |
84 #include "services/ui/public/cpp/gpu/context_provider_command_buffer.h" | 83 #include "services/ui/public/cpp/gpu/context_provider_command_buffer.h" |
85 #include "storage/common/database/database_identifier.h" | 84 #include "storage/common/database/database_identifier.h" |
86 #include "storage/common/quota/quota_types.h" | 85 #include "storage/common/quota/quota_types.h" |
87 #include "third_party/WebKit/public/platform/BlameContext.h" | 86 #include "third_party/WebKit/public/platform/BlameContext.h" |
88 #include "third_party/WebKit/public/platform/FilePathConversion.h" | 87 #include "third_party/WebKit/public/platform/FilePathConversion.h" |
89 #include "third_party/WebKit/public/platform/URLConversion.h" | 88 #include "third_party/WebKit/public/platform/URLConversion.h" |
90 #include "third_party/WebKit/public/platform/WebBlobRegistry.h" | 89 #include "third_party/WebKit/public/platform/WebBlobRegistry.h" |
(...skipping 1194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1285 return &trial_token_validator_; | 1284 return &trial_token_validator_; |
1286 } | 1285 } |
1287 | 1286 |
1288 void RendererBlinkPlatformImpl::workerContextCreated( | 1287 void RendererBlinkPlatformImpl::workerContextCreated( |
1289 const v8::Local<v8::Context>& worker) { | 1288 const v8::Local<v8::Context>& worker) { |
1290 GetContentClient()->renderer()->DidInitializeWorkerContextOnWorkerThread( | 1289 GetContentClient()->renderer()->DidInitializeWorkerContextOnWorkerThread( |
1291 worker); | 1290 worker); |
1292 } | 1291 } |
1293 | 1292 |
1294 } // namespace content | 1293 } // namespace content |
OLD | NEW |