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

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

Issue 643193003: Support InputMethodManager#updateCursorAnchorInfo for Android 5.0 (C++ version) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Send ImeCompositionRangeChanged only when necessary Created 5 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 (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 1321 matching lines...) Expand 10 before | Expand all | Expand 10 after
1332 switches::kDisableWebRtcHWDecoding, 1332 switches::kDisableWebRtcHWDecoding,
1333 switches::kDisableWebRtcHWEncoding, 1333 switches::kDisableWebRtcHWEncoding,
1334 switches::kEnableWebRtcHWH264Encoding, 1334 switches::kEnableWebRtcHWH264Encoding,
1335 switches::kWebRtcMaxCaptureFramerate, 1335 switches::kWebRtcMaxCaptureFramerate,
1336 #endif 1336 #endif
1337 switches::kEnableLowEndDeviceMode, 1337 switches::kEnableLowEndDeviceMode,
1338 switches::kDisableLowEndDeviceMode, 1338 switches::kDisableLowEndDeviceMode,
1339 #if defined(OS_ANDROID) 1339 #if defined(OS_ANDROID)
1340 switches::kDisableGestureRequirementForMediaPlayback, 1340 switches::kDisableGestureRequirementForMediaPlayback,
1341 switches::kDisableWebRTC, 1341 switches::kDisableWebRTC,
1342 switches::kEnableCursorAnchorInfo,
1342 switches::kMediaDrmEnableNonCompositing, 1343 switches::kMediaDrmEnableNonCompositing,
1343 switches::kNetworkCountryIso, 1344 switches::kNetworkCountryIso,
1344 switches::kDisableWebAudio, 1345 switches::kDisableWebAudio,
1345 switches::kRendererWaitForJavaDebugger, 1346 switches::kRendererWaitForJavaDebugger,
1346 #endif 1347 #endif
1347 #if defined(OS_MACOSX) 1348 #if defined(OS_MACOSX)
1348 // Allow this to be set when invoking the browser and relayed along. 1349 // Allow this to be set when invoking the browser and relayed along.
1349 switches::kEnableSandboxLogging, 1350 switches::kEnableSandboxLogging,
1350 #endif 1351 #endif
1351 #if defined(OS_MACOSX) && !defined(OS_IOS) 1352 #if defined(OS_MACOSX) && !defined(OS_IOS)
(...skipping 1041 matching lines...) Expand 10 before | Expand all | Expand 10 after
2393 if (worker_ref_count_ == 0) 2394 if (worker_ref_count_ == 0)
2394 Cleanup(); 2395 Cleanup();
2395 } 2396 }
2396 2397
2397 void RenderProcessHostImpl::GetAudioOutputControllers( 2398 void RenderProcessHostImpl::GetAudioOutputControllers(
2398 const GetAudioOutputControllersCallback& callback) const { 2399 const GetAudioOutputControllersCallback& callback) const {
2399 audio_renderer_host()->GetOutputControllers(callback); 2400 audio_renderer_host()->GetOutputControllers(callback);
2400 } 2401 }
2401 2402
2402 } // namespace content 2403 } // 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.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698