| 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 28 matching lines...) Expand all Loading... |
| 39 #include "content/child/web_database_observer_impl.h" | 39 #include "content/child/web_database_observer_impl.h" |
| 40 #include "content/child/web_url_loader_impl.h" | 40 #include "content/child/web_url_loader_impl.h" |
| 41 #include "content/child/webfileutilities_impl.h" | 41 #include "content/child/webfileutilities_impl.h" |
| 42 #include "content/child/webmessageportchannel_impl.h" | 42 #include "content/child/webmessageportchannel_impl.h" |
| 43 #include "content/common/file_utilities_messages.h" | 43 #include "content/common/file_utilities_messages.h" |
| 44 #include "content/common/frame_messages.h" | 44 #include "content/common/frame_messages.h" |
| 45 #include "content/common/gpu/client/context_provider_command_buffer.h" | 45 #include "content/common/gpu/client/context_provider_command_buffer.h" |
| 46 #include "content/common/gpu_process_launch_causes.h" | 46 #include "content/common/gpu_process_launch_causes.h" |
| 47 #include "content/common/render_process_messages.h" | 47 #include "content/common/render_process_messages.h" |
| 48 #include "content/public/common/content_switches.h" | 48 #include "content/public/common/content_switches.h" |
| 49 #include "content/public/common/service_registry.h" | |
| 50 #include "content/public/common/webplugininfo.h" | 49 #include "content/public/common/webplugininfo.h" |
| 51 #include "content/public/renderer/content_renderer_client.h" | 50 #include "content/public/renderer/content_renderer_client.h" |
| 52 #include "content/public/renderer/media_stream_utils.h" | 51 #include "content/public/renderer/media_stream_utils.h" |
| 53 #include "content/renderer/cache_storage/webserviceworkercachestorage_impl.h" | 52 #include "content/renderer/cache_storage/webserviceworkercachestorage_impl.h" |
| 54 #include "content/renderer/device_sensors/device_light_event_pump.h" | 53 #include "content/renderer/device_sensors/device_light_event_pump.h" |
| 55 #include "content/renderer/device_sensors/device_motion_event_pump.h" | 54 #include "content/renderer/device_sensors/device_motion_event_pump.h" |
| 56 #include "content/renderer/device_sensors/device_orientation_absolute_event_pump
.h" | 55 #include "content/renderer/device_sensors/device_orientation_absolute_event_pump
.h" |
| 57 #include "content/renderer/device_sensors/device_orientation_event_pump.h" | 56 #include "content/renderer/device_sensors/device_orientation_event_pump.h" |
| 58 #include "content/renderer/dom_storage/local_storage_cached_areas.h" | 57 #include "content/renderer/dom_storage/local_storage_cached_areas.h" |
| 59 #include "content/renderer/dom_storage/local_storage_namespace.h" | 58 #include "content/renderer/dom_storage/local_storage_namespace.h" |
| (...skipping 1271 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1331 return &trial_token_validator_; | 1330 return &trial_token_validator_; |
| 1332 } | 1331 } |
| 1333 | 1332 |
| 1334 void RendererBlinkPlatformImpl::workerContextCreated( | 1333 void RendererBlinkPlatformImpl::workerContextCreated( |
| 1335 const v8::Local<v8::Context>& worker) { | 1334 const v8::Local<v8::Context>& worker) { |
| 1336 GetContentClient()->renderer()->DidInitializeWorkerContextOnWorkerThread( | 1335 GetContentClient()->renderer()->DidInitializeWorkerContextOnWorkerThread( |
| 1337 worker); | 1336 worker); |
| 1338 } | 1337 } |
| 1339 | 1338 |
| 1340 } // namespace content | 1339 } // namespace content |
| OLD | NEW |