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

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

Issue 1412663005: Introduce painted-device-scale-factor and use it when --enable-use-zoom-for-dsf is specified. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 1 month 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 1340 matching lines...) Expand 10 before | Expand all | Expand 10 after
1351 switches::kEnableRGBA4444Textures, 1351 switches::kEnableRGBA4444Textures,
1352 switches::kEnableRendererMojoChannel, 1352 switches::kEnableRendererMojoChannel,
1353 switches::kEnableSeccompFilterSandbox, 1353 switches::kEnableSeccompFilterSandbox,
1354 switches::kEnableSkiaBenchmarking, 1354 switches::kEnableSkiaBenchmarking,
1355 switches::kEnableSlimmingPaintV2, 1355 switches::kEnableSlimmingPaintV2,
1356 switches::kEnableSmoothScrolling, 1356 switches::kEnableSmoothScrolling,
1357 switches::kEnableStatsTable, 1357 switches::kEnableStatsTable,
1358 switches::kEnableThreadedCompositing, 1358 switches::kEnableThreadedCompositing,
1359 switches::kEnableTouchDragDrop, 1359 switches::kEnableTouchDragDrop,
1360 switches::kEnableUnsafeES3APIs, 1360 switches::kEnableUnsafeES3APIs,
1361 switches::kEnableUseZoomForDSF,
1361 switches::kEnableViewport, 1362 switches::kEnableViewport,
1362 switches::kEnableVtune, 1363 switches::kEnableVtune,
1363 switches::kEnableWebBluetooth, 1364 switches::kEnableWebBluetooth,
1364 switches::kEnableWebGLDraftExtensions, 1365 switches::kEnableWebGLDraftExtensions,
1365 switches::kEnableWebGLImageChromium, 1366 switches::kEnableWebGLImageChromium,
1366 switches::kEnableWebVR, 1367 switches::kEnableWebVR,
1367 switches::kExplicitlyAllowedPorts, 1368 switches::kExplicitlyAllowedPorts,
1368 switches::kForceDeviceScaleFactor, 1369 switches::kForceDeviceScaleFactor,
1369 switches::kForceDisplayList2dCanvas, 1370 switches::kForceDisplayList2dCanvas,
1370 switches::kForceOverlayFullscreenVideo, 1371 switches::kForceOverlayFullscreenVideo,
(...skipping 1252 matching lines...) Expand 10 before | Expand all | Expand 10 after
2623 void RenderProcessHostImpl::GetAudioOutputControllers( 2624 void RenderProcessHostImpl::GetAudioOutputControllers(
2624 const GetAudioOutputControllersCallback& callback) const { 2625 const GetAudioOutputControllersCallback& callback) const {
2625 audio_renderer_host()->GetOutputControllers(callback); 2626 audio_renderer_host()->GetOutputControllers(callback);
2626 } 2627 }
2627 2628
2628 BluetoothDispatcherHost* RenderProcessHostImpl::GetBluetoothDispatcherHost() { 2629 BluetoothDispatcherHost* RenderProcessHostImpl::GetBluetoothDispatcherHost() {
2629 return bluetooth_dispatcher_host_.get(); 2630 return bluetooth_dispatcher_host_.get();
2630 } 2631 }
2631 2632
2632 } // namespace content 2633 } // namespace content
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/login/chrome_restart_request.cc ('k') | content/public/common/content_switches.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698