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

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: rebase master Inset handling logic 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 1526 matching lines...) Expand 10 before | Expand all | Expand 10 after
1537 switches::kEnforceWebRtcIPPermissionCheck, 1537 switches::kEnforceWebRtcIPPermissionCheck,
1538 switches::kForceWebRtcIPHandlingPolicy, 1538 switches::kForceWebRtcIPHandlingPolicy,
1539 switches::kWebRtcMaxCaptureFramerate, 1539 switches::kWebRtcMaxCaptureFramerate,
1540 #endif 1540 #endif
1541 switches::kEnableLowEndDeviceMode, 1541 switches::kEnableLowEndDeviceMode,
1542 switches::kDisableLowEndDeviceMode, 1542 switches::kDisableLowEndDeviceMode,
1543 #if defined(OS_ANDROID) 1543 #if defined(OS_ANDROID)
1544 switches::kDisableWebAudio, 1544 switches::kDisableWebAudio,
1545 switches::kEnableUnifiedMediaPipeline, 1545 switches::kEnableUnifiedMediaPipeline,
1546 switches::kIPCSyncCompositing, 1546 switches::kIPCSyncCompositing,
1547 switches::kEnableOSKOverscroll,
1547 switches::kRendererWaitForJavaDebugger, 1548 switches::kRendererWaitForJavaDebugger,
1548 #endif 1549 #endif
1549 #if defined(OS_MACOSX) 1550 #if defined(OS_MACOSX)
1550 // Allow this to be set when invoking the browser and relayed along. 1551 // Allow this to be set when invoking the browser and relayed along.
1551 switches::kEnableSandboxLogging, 1552 switches::kEnableSandboxLogging,
1552 #endif 1553 #endif
1553 #if defined(OS_WIN) 1554 #if defined(OS_WIN)
1554 switches::kDisableDirectWrite, 1555 switches::kDisableDirectWrite,
1555 switches::kDisableWin32kRendererLockDown, 1556 switches::kDisableWin32kRendererLockDown,
1556 switches::kTraceExportEventsToETW, 1557 switches::kTraceExportEventsToETW,
(...skipping 1239 matching lines...) Expand 10 before | Expand all | Expand 10 after
2796 void RenderProcessHostImpl::GetAudioOutputControllers( 2797 void RenderProcessHostImpl::GetAudioOutputControllers(
2797 const GetAudioOutputControllersCallback& callback) const { 2798 const GetAudioOutputControllersCallback& callback) const {
2798 audio_renderer_host()->GetOutputControllers(callback); 2799 audio_renderer_host()->GetOutputControllers(callback);
2799 } 2800 }
2800 2801
2801 BluetoothDispatcherHost* RenderProcessHostImpl::GetBluetoothDispatcherHost() { 2802 BluetoothDispatcherHost* RenderProcessHostImpl::GetBluetoothDispatcherHost() {
2802 return bluetooth_dispatcher_host_.get(); 2803 return bluetooth_dispatcher_host_.get();
2803 } 2804 }
2804 2805
2805 } // namespace content 2806 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698