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

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: straighten up state update, replace mQueue.poll() by mQueue.take() Created 4 years, 10 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 1524 matching lines...) Expand 10 before | Expand all | Expand 10 after
1535 switches::kForceWebRtcIPHandlingPolicy, 1535 switches::kForceWebRtcIPHandlingPolicy,
1536 switches::kWebRtcMaxCaptureFramerate, 1536 switches::kWebRtcMaxCaptureFramerate,
1537 #endif 1537 #endif
1538 switches::kEnableLowEndDeviceMode, 1538 switches::kEnableLowEndDeviceMode,
1539 switches::kDisableLowEndDeviceMode, 1539 switches::kDisableLowEndDeviceMode,
1540 #if defined(OS_ANDROID) 1540 #if defined(OS_ANDROID)
1541 switches::kDisableWebAudio, 1541 switches::kDisableWebAudio,
1542 switches::kEnableUnifiedMediaPipeline, 1542 switches::kEnableUnifiedMediaPipeline,
1543 switches::kIPCSyncCompositing, 1543 switches::kIPCSyncCompositing,
1544 switches::kRendererWaitForJavaDebugger, 1544 switches::kRendererWaitForJavaDebugger,
1545 switches::kUseImeThread,
1545 #endif 1546 #endif
1546 #if defined(OS_MACOSX) 1547 #if defined(OS_MACOSX)
1547 // Allow this to be set when invoking the browser and relayed along. 1548 // Allow this to be set when invoking the browser and relayed along.
1548 switches::kEnableSandboxLogging, 1549 switches::kEnableSandboxLogging,
1549 #endif 1550 #endif
1550 #if defined(OS_WIN) 1551 #if defined(OS_WIN)
1551 switches::kDisableDirectWrite, 1552 switches::kDisableDirectWrite,
1552 switches::kDisableWin32kRendererLockDown, 1553 switches::kDisableWin32kRendererLockDown,
1553 switches::kTraceExportEventsToETW, 1554 switches::kTraceExportEventsToETW,
1554 #endif 1555 #endif
(...skipping 1238 matching lines...) Expand 10 before | Expand all | Expand 10 after
2793 void RenderProcessHostImpl::GetAudioOutputControllers( 2794 void RenderProcessHostImpl::GetAudioOutputControllers(
2794 const GetAudioOutputControllersCallback& callback) const { 2795 const GetAudioOutputControllersCallback& callback) const {
2795 audio_renderer_host()->GetOutputControllers(callback); 2796 audio_renderer_host()->GetOutputControllers(callback);
2796 } 2797 }
2797 2798
2798 BluetoothDispatcherHost* RenderProcessHostImpl::GetBluetoothDispatcherHost() { 2799 BluetoothDispatcherHost* RenderProcessHostImpl::GetBluetoothDispatcherHost() {
2799 return bluetooth_dispatcher_host_.get(); 2800 return bluetooth_dispatcher_host_.get();
2800 } 2801 }
2801 2802
2802 } // namespace content 2803 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698