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

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

Issue 1589953005: Support InputMethodManager#updateCursorAnchorInfo for Android 5.0 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix Findbugs warning / Simplify the state transition. 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 1534 matching lines...) Expand 10 before | Expand all | Expand 10 after
1545 switches::kEnforceWebRtcIPPermissionCheck, 1545 switches::kEnforceWebRtcIPPermissionCheck,
1546 switches::kForceWebRtcIPHandlingPolicy, 1546 switches::kForceWebRtcIPHandlingPolicy,
1547 switches::kWebRtcMaxCaptureFramerate, 1547 switches::kWebRtcMaxCaptureFramerate,
1548 #endif 1548 #endif
1549 switches::kEnableLowEndDeviceMode, 1549 switches::kEnableLowEndDeviceMode,
1550 switches::kDisableLowEndDeviceMode, 1550 switches::kDisableLowEndDeviceMode,
1551 #if defined(OS_ANDROID) 1551 #if defined(OS_ANDROID)
1552 switches::kDisableWebAudio, 1552 switches::kDisableWebAudio,
1553 switches::kEnableUnifiedMediaPipeline, 1553 switches::kEnableUnifiedMediaPipeline,
1554 switches::kIPCSyncCompositing, 1554 switches::kIPCSyncCompositing,
1555 switches::kEnableCursorAnchorInfo,
1555 switches::kRendererWaitForJavaDebugger, 1556 switches::kRendererWaitForJavaDebugger,
1556 #endif 1557 #endif
1557 #if defined(OS_MACOSX) 1558 #if defined(OS_MACOSX)
1558 // Allow this to be set when invoking the browser and relayed along. 1559 // Allow this to be set when invoking the browser and relayed along.
1559 switches::kEnableSandboxLogging, 1560 switches::kEnableSandboxLogging,
1560 #endif 1561 #endif
1561 #if defined(OS_WIN) 1562 #if defined(OS_WIN)
1562 switches::kDisableDirectWrite, 1563 switches::kDisableDirectWrite,
1563 switches::kDisableWin32kRendererLockDown, 1564 switches::kDisableWin32kRendererLockDown,
1564 switches::kTraceExportEventsToETW, 1565 switches::kTraceExportEventsToETW,
(...skipping 1227 matching lines...) Expand 10 before | Expand all | Expand 10 after
2792 void RenderProcessHostImpl::GetAudioOutputControllers( 2793 void RenderProcessHostImpl::GetAudioOutputControllers(
2793 const GetAudioOutputControllersCallback& callback) const { 2794 const GetAudioOutputControllersCallback& callback) const {
2794 audio_renderer_host()->GetOutputControllers(callback); 2795 audio_renderer_host()->GetOutputControllers(callback);
2795 } 2796 }
2796 2797
2797 BluetoothDispatcherHost* RenderProcessHostImpl::GetBluetoothDispatcherHost() { 2798 BluetoothDispatcherHost* RenderProcessHostImpl::GetBluetoothDispatcherHost() {
2798 return bluetooth_dispatcher_host_.get(); 2799 return bluetooth_dispatcher_host_.get();
2799 } 2800 }
2800 2801
2801 } // namespace content 2802 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698