Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(247)

Side by Side Diff: content/renderer/renderer_blink_platform_impl.cc

Issue 2607063002: Remove mojo::Array. (Closed)
Patch Set: rebase Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698