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

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

Issue 2037513002: Convert device_sensors to use mojo. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@conversion--mime-registry
Patch Set: Created 4 years, 5 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 <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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
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/webplugininfo.h" 49 #include "content/public/common/webplugininfo.h"
50 #include "content/public/renderer/content_renderer_client.h" 50 #include "content/public/renderer/content_renderer_client.h"
51 #include "content/public/renderer/media_stream_utils.h" 51 #include "content/public/renderer/media_stream_utils.h"
52 #include "content/renderer/cache_storage/webserviceworkercachestorage_impl.h" 52 #include "content/renderer/cache_storage/webserviceworkercachestorage_impl.h"
53 #include "content/renderer/device_sensors/device_light_event_pump.h" 53 #include "content/renderer/device_sensors/device_light_event_pump.h"
54 #include "content/renderer/device_sensors/device_motion_event_pump.h" 54 #include "content/renderer/device_sensors/device_motion_event_pump.h"
55 #include "content/renderer/device_sensors/device_orientation_absolute_event_pump .h"
56 #include "content/renderer/device_sensors/device_orientation_event_pump.h" 55 #include "content/renderer/device_sensors/device_orientation_event_pump.h"
57 #include "content/renderer/dom_storage/local_storage_cached_areas.h" 56 #include "content/renderer/dom_storage/local_storage_cached_areas.h"
58 #include "content/renderer/dom_storage/local_storage_namespace.h" 57 #include "content/renderer/dom_storage/local_storage_namespace.h"
59 #include "content/renderer/dom_storage/webstoragenamespace_impl.h" 58 #include "content/renderer/dom_storage/webstoragenamespace_impl.h"
60 #include "content/renderer/gamepad_shared_memory_reader.h" 59 #include "content/renderer/gamepad_shared_memory_reader.h"
61 #include "content/renderer/media/audio_decoder.h" 60 #include "content/renderer/media/audio_decoder.h"
62 #include "content/renderer/media/canvas_capture_handler.h" 61 #include "content/renderer/media/canvas_capture_handler.h"
63 #include "content/renderer/media/html_audio_element_capturer_source.h" 62 #include "content/renderer/media/html_audio_element_capturer_source.h"
64 #include "content/renderer/media/html_video_element_capturer_source.h" 63 #include "content/renderer/media/html_video_element_capturer_source.h"
65 #include "content/renderer/media/image_capture_frame_grabber.h" 64 #include "content/renderer/media/image_capture_frame_grabber.h"
(...skipping 1242 matching lines...) Expand 10 before | Expand all | Expand 10 after
1308 return &trial_token_validator_; 1307 return &trial_token_validator_;
1309 } 1308 }
1310 1309
1311 void RendererBlinkPlatformImpl::workerContextCreated( 1310 void RendererBlinkPlatformImpl::workerContextCreated(
1312 const v8::Local<v8::Context>& worker) { 1311 const v8::Local<v8::Context>& worker) {
1313 GetContentClient()->renderer()->DidInitializeWorkerContextOnWorkerThread( 1312 GetContentClient()->renderer()->DidInitializeWorkerContextOnWorkerThread(
1314 worker); 1313 worker);
1315 } 1314 }
1316 1315
1317 } // namespace content 1316 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698