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

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: fixed a crash for LatinIME Created 4 years, 11 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 1495 matching lines...) Expand 10 before | Expand all | Expand 10 after
1506 switches::kForceWebRtcIPHandlingPolicy, 1506 switches::kForceWebRtcIPHandlingPolicy,
1507 switches::kWebRtcMaxCaptureFramerate, 1507 switches::kWebRtcMaxCaptureFramerate,
1508 #endif 1508 #endif
1509 switches::kEnableLowEndDeviceMode, 1509 switches::kEnableLowEndDeviceMode,
1510 switches::kDisableLowEndDeviceMode, 1510 switches::kDisableLowEndDeviceMode,
1511 #if defined(OS_ANDROID) 1511 #if defined(OS_ANDROID)
1512 switches::kDisableWebAudio, 1512 switches::kDisableWebAudio,
1513 switches::kEnableUnifiedMediaPipeline, 1513 switches::kEnableUnifiedMediaPipeline,
1514 switches::kIPCSyncCompositing, 1514 switches::kIPCSyncCompositing,
1515 switches::kRendererWaitForJavaDebugger, 1515 switches::kRendererWaitForJavaDebugger,
1516 switches::kUseImeThread,
1516 #endif 1517 #endif
1517 #if defined(OS_MACOSX) 1518 #if defined(OS_MACOSX)
1518 // Allow this to be set when invoking the browser and relayed along. 1519 // Allow this to be set when invoking the browser and relayed along.
1519 switches::kEnableSandboxLogging, 1520 switches::kEnableSandboxLogging,
1520 #endif 1521 #endif
1521 #if defined(OS_WIN) 1522 #if defined(OS_WIN)
1522 switches::kDisableDirectWrite, 1523 switches::kDisableDirectWrite,
1523 switches::kDisableWin32kRendererLockDown, 1524 switches::kDisableWin32kRendererLockDown,
1524 switches::kTraceExportEventsToETW, 1525 switches::kTraceExportEventsToETW,
1525 #endif 1526 #endif
(...skipping 1238 matching lines...) Expand 10 before | Expand all | Expand 10 after
2764 void RenderProcessHostImpl::GetAudioOutputControllers( 2765 void RenderProcessHostImpl::GetAudioOutputControllers(
2765 const GetAudioOutputControllersCallback& callback) const { 2766 const GetAudioOutputControllersCallback& callback) const {
2766 audio_renderer_host()->GetOutputControllers(callback); 2767 audio_renderer_host()->GetOutputControllers(callback);
2767 } 2768 }
2768 2769
2769 BluetoothDispatcherHost* RenderProcessHostImpl::GetBluetoothDispatcherHost() { 2770 BluetoothDispatcherHost* RenderProcessHostImpl::GetBluetoothDispatcherHost() {
2770 return bluetooth_dispatcher_host_.get(); 2771 return bluetooth_dispatcher_host_.get();
2771 } 2772 }
2772 2773
2773 } // namespace content 2774 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698