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

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

Issue 1386403003: Resize only the virtual viewport when the OSK triggers a resize. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Worked on review comments. Created 5 years, 2 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 1365 matching lines...) Expand 10 before | Expand all | Expand 10 after
1376 switches::kEnableWebRtcDtls12, 1376 switches::kEnableWebRtcDtls12,
1377 switches::kEnableWebRtcHWH264Encoding, 1377 switches::kEnableWebRtcHWH264Encoding,
1378 switches::kEnableWebRtcStunOrigin, 1378 switches::kEnableWebRtcStunOrigin,
1379 switches::kWebRtcMaxCaptureFramerate, 1379 switches::kWebRtcMaxCaptureFramerate,
1380 #endif 1380 #endif
1381 switches::kEnableLowEndDeviceMode, 1381 switches::kEnableLowEndDeviceMode,
1382 switches::kDisableLowEndDeviceMode, 1382 switches::kDisableLowEndDeviceMode,
1383 #if defined(OS_ANDROID) 1383 #if defined(OS_ANDROID)
1384 switches::kDisableGestureRequirementForMediaPlayback, 1384 switches::kDisableGestureRequirementForMediaPlayback,
1385 switches::kDisableWebAudio, 1385 switches::kDisableWebAudio,
1386 switches::kEnableOSKOverscroll,
jdduke (slow) 2015/10/09 15:17:28 This flag is unneeded by the renderer process, rig
1386 switches::kRendererWaitForJavaDebugger, 1387 switches::kRendererWaitForJavaDebugger,
1387 #endif 1388 #endif
1388 #if defined(OS_MACOSX) 1389 #if defined(OS_MACOSX)
1389 // Allow this to be set when invoking the browser and relayed along. 1390 // Allow this to be set when invoking the browser and relayed along.
1390 switches::kEnableSandboxLogging, 1391 switches::kEnableSandboxLogging,
1391 #endif 1392 #endif
1392 #if defined(OS_WIN) 1393 #if defined(OS_WIN)
1393 switches::kDisableDirectWrite, 1394 switches::kDisableDirectWrite,
1394 switches::kDisableWin32kRendererLockDown, 1395 switches::kDisableWin32kRendererLockDown,
1395 switches::kTraceExportEventsToETW, 1396 switches::kTraceExportEventsToETW,
(...skipping 1133 matching lines...) Expand 10 before | Expand all | Expand 10 after
2529 void RenderProcessHostImpl::GetAudioOutputControllers( 2530 void RenderProcessHostImpl::GetAudioOutputControllers(
2530 const GetAudioOutputControllersCallback& callback) const { 2531 const GetAudioOutputControllersCallback& callback) const {
2531 audio_renderer_host()->GetOutputControllers(callback); 2532 audio_renderer_host()->GetOutputControllers(callback);
2532 } 2533 }
2533 2534
2534 BluetoothDispatcherHost* RenderProcessHostImpl::GetBluetoothDispatcherHost() { 2535 BluetoothDispatcherHost* RenderProcessHostImpl::GetBluetoothDispatcherHost() {
2535 return bluetooth_dispatcher_host_.get(); 2536 return bluetooth_dispatcher_host_.get();
2536 } 2537 }
2537 2538
2538 } // namespace content 2539 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698