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

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

Issue 699333003: Support InputMethodManager#updateCursorAnchorInfo for Android 5.0 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase before splitting this CL. Created 5 years, 8 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 1354 matching lines...) Expand 10 before | Expand all | Expand 10 after
1365 switches::kEnableWebRtcHWH264Encoding, 1365 switches::kEnableWebRtcHWH264Encoding,
1366 switches::kEnableWebRtcStunOrigin, 1366 switches::kEnableWebRtcStunOrigin,
1367 switches::kWebRtcMaxCaptureFramerate, 1367 switches::kWebRtcMaxCaptureFramerate,
1368 #endif 1368 #endif
1369 switches::kEnableLowEndDeviceMode, 1369 switches::kEnableLowEndDeviceMode,
1370 switches::kDisableLowEndDeviceMode, 1370 switches::kDisableLowEndDeviceMode,
1371 #if defined(OS_ANDROID) 1371 #if defined(OS_ANDROID)
1372 switches::kDisableGestureRequirementForMediaPlayback, 1372 switches::kDisableGestureRequirementForMediaPlayback,
1373 switches::kDisableWebRTC, 1373 switches::kDisableWebRTC,
1374 switches::kDisableWebAudio, 1374 switches::kDisableWebAudio,
1375 switches::kEnableCursorAnchorInfo,
1375 switches::kRendererWaitForJavaDebugger, 1376 switches::kRendererWaitForJavaDebugger,
1376 #endif 1377 #endif
1377 #if defined(OS_MACOSX) 1378 #if defined(OS_MACOSX)
1378 // Allow this to be set when invoking the browser and relayed along. 1379 // Allow this to be set when invoking the browser and relayed along.
1379 switches::kEnableSandboxLogging, 1380 switches::kEnableSandboxLogging,
1380 #endif 1381 #endif
1381 #if defined(OS_WIN) 1382 #if defined(OS_WIN)
1382 switches::kDisableDirectWrite, 1383 switches::kDisableDirectWrite,
1383 switches::kEnableWin32kRendererLockDown, 1384 switches::kEnableWin32kRendererLockDown,
1384 switches::kDisableWin32kRendererLockDown, 1385 switches::kDisableWin32kRendererLockDown,
(...skipping 1095 matching lines...) Expand 10 before | Expand all | Expand 10 after
2480 if (worker_ref_count_ == 0) 2481 if (worker_ref_count_ == 0)
2481 Cleanup(); 2482 Cleanup();
2482 } 2483 }
2483 2484
2484 void RenderProcessHostImpl::GetAudioOutputControllers( 2485 void RenderProcessHostImpl::GetAudioOutputControllers(
2485 const GetAudioOutputControllersCallback& callback) const { 2486 const GetAudioOutputControllersCallback& callback) const {
2486 audio_renderer_host()->GetOutputControllers(callback); 2487 audio_renderer_host()->GetOutputControllers(callback);
2487 } 2488 }
2488 2489
2489 } // namespace content 2490 } // namespace content
OLDNEW
« no previous file with comments | « content/browser/renderer_host/ime_adapter_android.cc ('k') | content/browser/renderer_host/render_widget_host_view_android.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698