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

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

Issue 1169193003: [SP] Enable Slimming Paint by default in Chromium and Blink. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Merge changes. Created 5 years, 6 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 1230 matching lines...) Expand 10 before | Expand all | Expand 10 after
1241 switches::kDisableMediaSource, 1241 switches::kDisableMediaSource,
1242 switches::kDisableMojoChannel, 1242 switches::kDisableMojoChannel,
1243 switches::kDisableNewVideoRenderer, 1243 switches::kDisableNewVideoRenderer,
1244 switches::kDisableNotifications, 1244 switches::kDisableNotifications,
1245 switches::kDisableOverlayScrollbar, 1245 switches::kDisableOverlayScrollbar,
1246 switches::kDisablePermissionsAPI, 1246 switches::kDisablePermissionsAPI,
1247 switches::kDisablePinch, 1247 switches::kDisablePinch,
1248 switches::kDisablePrefixedEncryptedMedia, 1248 switches::kDisablePrefixedEncryptedMedia,
1249 switches::kDisableSeccompFilterSandbox, 1249 switches::kDisableSeccompFilterSandbox,
1250 switches::kDisableSharedWorkers, 1250 switches::kDisableSharedWorkers,
1251 switches::kDisableSlimmingPaint,
1251 switches::kDisableSpeechAPI, 1252 switches::kDisableSpeechAPI,
1252 switches::kDisableSVG1DOM, 1253 switches::kDisableSVG1DOM,
1253 switches::kDisableThreadedCompositing, 1254 switches::kDisableThreadedCompositing,
1254 switches::kDisableThreadedScrolling, 1255 switches::kDisableThreadedScrolling,
1255 switches::kDisableTouchAdjustment, 1256 switches::kDisableTouchAdjustment,
1256 switches::kDisableTouchDragDrop, 1257 switches::kDisableTouchDragDrop,
1257 switches::kDisableTouchEditing, 1258 switches::kDisableTouchEditing,
1258 switches::kDisableV8IdleTasks, 1259 switches::kDisableV8IdleTasks,
1259 switches::kDomAutomationController, 1260 switches::kDomAutomationController,
1260 switches::kEnableBleedingEdgeRenderingFastPaths, 1261 switches::kEnableBleedingEdgeRenderingFastPaths,
(...skipping 1241 matching lines...) Expand 10 before | Expand all | Expand 10 after
2502 void RenderProcessHostImpl::GetAudioOutputControllers( 2503 void RenderProcessHostImpl::GetAudioOutputControllers(
2503 const GetAudioOutputControllersCallback& callback) const { 2504 const GetAudioOutputControllersCallback& callback) const {
2504 audio_renderer_host()->GetOutputControllers(callback); 2505 audio_renderer_host()->GetOutputControllers(callback);
2505 } 2506 }
2506 2507
2507 BluetoothDispatcherHost* RenderProcessHostImpl::GetBluetoothDispatcherHost() { 2508 BluetoothDispatcherHost* RenderProcessHostImpl::GetBluetoothDispatcherHost() {
2508 return bluetooth_dispatcher_host_.get(); 2509 return bluetooth_dispatcher_host_.get();
2509 } 2510 }
2510 2511
2511 } // namespace content 2512 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698