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

Side by Side Diff: content/browser/renderer_host/render_process_host_impl.cc

Issue 829803003: Adding Chrome-side WebVR interface (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Updated to use Mojo as requested by eng review Created 5 years, 6 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 // Represents the browser side of the browser <--> renderer communication 5 // Represents the browser side of the browser <--> renderer communication
6 // channel. There will be one RenderProcessHost per renderer process. 6 // channel. There will be one RenderProcessHost per renderer process.
7 7
8 #include "content/browser/renderer_host/render_process_host_impl.h" 8 #include "content/browser/renderer_host/render_process_host_impl.h"
9 9
10 #include <algorithm> 10 #include <algorithm>
(...skipping 1282 matching lines...) Expand 10 before | Expand all | Expand 10 after
1293 switches::kEnableThreadedCompositing, 1293 switches::kEnableThreadedCompositing,
1294 switches::kEnableTouchDragDrop, 1294 switches::kEnableTouchDragDrop,
1295 switches::kEnableTouchEditing, 1295 switches::kEnableTouchEditing,
1296 switches::kEnableUnsafeES3APIs, 1296 switches::kEnableUnsafeES3APIs,
1297 switches::kEnableViewport, 1297 switches::kEnableViewport,
1298 switches::kEnableViewportMeta, 1298 switches::kEnableViewportMeta,
1299 switches::kEnableVtune, 1299 switches::kEnableVtune,
1300 switches::kEnableWebBluetooth, 1300 switches::kEnableWebBluetooth,
1301 switches::kEnableWebGLDraftExtensions, 1301 switches::kEnableWebGLDraftExtensions,
1302 switches::kEnableWebGLImageChromium, 1302 switches::kEnableWebGLImageChromium,
1303 switches::kEnableWebVR,
1303 switches::kExplicitlyAllowedPorts, 1304 switches::kExplicitlyAllowedPorts,
1304 switches::kForceDeviceScaleFactor, 1305 switches::kForceDeviceScaleFactor,
1305 switches::kForceDisplayList2dCanvas, 1306 switches::kForceDisplayList2dCanvas,
1306 switches::kFullMemoryCrashReport, 1307 switches::kFullMemoryCrashReport,
1307 switches::kIPCConnectionTimeout, 1308 switches::kIPCConnectionTimeout,
1308 switches::kJavaScriptFlags, 1309 switches::kJavaScriptFlags,
1309 switches::kLoggingLevel, 1310 switches::kLoggingLevel,
1310 switches::kMainFrameResizesAreOrientationChanges, 1311 switches::kMainFrameResizesAreOrientationChanges,
1311 switches::kMaxUntiledLayerWidth, 1312 switches::kMaxUntiledLayerWidth,
1312 switches::kMaxUntiledLayerHeight, 1313 switches::kMaxUntiledLayerHeight,
(...skipping 1164 matching lines...) Expand 10 before | Expand all | Expand 10 after
2477 void RenderProcessHostImpl::GetAudioOutputControllers( 2478 void RenderProcessHostImpl::GetAudioOutputControllers(
2478 const GetAudioOutputControllersCallback& callback) const { 2479 const GetAudioOutputControllersCallback& callback) const {
2479 audio_renderer_host()->GetOutputControllers(callback); 2480 audio_renderer_host()->GetOutputControllers(callback);
2480 } 2481 }
2481 2482
2482 BluetoothDispatcherHost* RenderProcessHostImpl::GetBluetoothDispatcherHost() { 2483 BluetoothDispatcherHost* RenderProcessHostImpl::GetBluetoothDispatcherHost() {
2483 return bluetooth_dispatcher_host_.get(); 2484 return bluetooth_dispatcher_host_.get();
2484 } 2485 }
2485 2486
2486 } // namespace content 2487 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698