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

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

Issue 1278593004: Introduce ThreadedInputConnection behind a switch (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 3 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 2012 The Chromium Authors. All rights reserved. 1 // Copyright 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 1392 matching lines...) Expand 10 before | Expand all | Expand 10 after
1403 switches::kEnableWebRtcHWH264Encoding, 1403 switches::kEnableWebRtcHWH264Encoding,
1404 switches::kEnableWebRtcStunOrigin, 1404 switches::kEnableWebRtcStunOrigin,
1405 switches::kWebRtcMaxCaptureFramerate, 1405 switches::kWebRtcMaxCaptureFramerate,
1406 #endif 1406 #endif
1407 switches::kEnableLowEndDeviceMode, 1407 switches::kEnableLowEndDeviceMode,
1408 switches::kDisableLowEndDeviceMode, 1408 switches::kDisableLowEndDeviceMode,
1409 #if defined(OS_ANDROID) 1409 #if defined(OS_ANDROID)
1410 switches::kDisableGestureRequirementForMediaPlayback, 1410 switches::kDisableGestureRequirementForMediaPlayback,
1411 switches::kDisableWebAudio, 1411 switches::kDisableWebAudio,
1412 switches::kRendererWaitForJavaDebugger, 1412 switches::kRendererWaitForJavaDebugger,
1413 switches::kUseImeThread,
1413 #endif 1414 #endif
1414 #if defined(OS_MACOSX) 1415 #if defined(OS_MACOSX)
1415 // Allow this to be set when invoking the browser and relayed along. 1416 // Allow this to be set when invoking the browser and relayed along.
1416 switches::kEnableSandboxLogging, 1417 switches::kEnableSandboxLogging,
1417 #endif 1418 #endif
1418 #if defined(OS_WIN) 1419 #if defined(OS_WIN)
1419 switches::kDisableDirectWrite, 1420 switches::kDisableDirectWrite,
1420 switches::kDisableWin32kRendererLockDown, 1421 switches::kDisableWin32kRendererLockDown,
1421 switches::kTraceExportEventsToETW, 1422 switches::kTraceExportEventsToETW,
1422 #endif 1423 #endif
(...skipping 1152 matching lines...) Expand 10 before | Expand all | Expand 10 after
2575 void RenderProcessHostImpl::GetAudioOutputControllers( 2576 void RenderProcessHostImpl::GetAudioOutputControllers(
2576 const GetAudioOutputControllersCallback& callback) const { 2577 const GetAudioOutputControllersCallback& callback) const {
2577 audio_renderer_host()->GetOutputControllers(callback); 2578 audio_renderer_host()->GetOutputControllers(callback);
2578 } 2579 }
2579 2580
2580 BluetoothDispatcherHost* RenderProcessHostImpl::GetBluetoothDispatcherHost() { 2581 BluetoothDispatcherHost* RenderProcessHostImpl::GetBluetoothDispatcherHost() {
2581 return bluetooth_dispatcher_host_.get(); 2582 return bluetooth_dispatcher_host_.get();
2582 } 2583 }
2583 2584
2584 } // namespace content 2585 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698