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

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

Issue 898483004: Add --{enable,disable}-blink-features flags which set RuntimeEnabledFeatures. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 1176 matching lines...) Expand 10 before | Expand all | Expand 10 after
1187 switches::kAuditAllHandles, 1187 switches::kAuditAllHandles,
1188 switches::kAuditHandles, 1188 switches::kAuditHandles,
1189 switches::kBlinkPlatformLogChannels, 1189 switches::kBlinkPlatformLogChannels,
1190 switches::kBlockCrossSiteDocuments, 1190 switches::kBlockCrossSiteDocuments,
1191 switches::kDefaultTileWidth, 1191 switches::kDefaultTileWidth,
1192 switches::kDefaultTileHeight, 1192 switches::kDefaultTileHeight,
1193 switches::kDisable3DAPIs, 1193 switches::kDisable3DAPIs,
1194 switches::kDisableAcceleratedJpegDecoding, 1194 switches::kDisableAcceleratedJpegDecoding,
1195 switches::kDisableAcceleratedVideoDecode, 1195 switches::kDisableAcceleratedVideoDecode,
1196 switches::kDisableBlinkScheduler, 1196 switches::kDisableBlinkScheduler,
1197 switches::kDisableBlinkFeatures,
1197 switches::kDisableBreakpad, 1198 switches::kDisableBreakpad,
1198 switches::kDisablePreferCompositingToLCDText, 1199 switches::kDisablePreferCompositingToLCDText,
1199 switches::kDisableDatabases, 1200 switches::kDisableDatabases,
1200 switches::kDisableDirectNPAPIRequests, 1201 switches::kDisableDirectNPAPIRequests,
1201 switches::kDisableDisplayList2dCanvas, 1202 switches::kDisableDisplayList2dCanvas,
1202 switches::kDisableDistanceFieldText, 1203 switches::kDisableDistanceFieldText,
1203 switches::kDisableEncryptedMedia, 1204 switches::kDisableEncryptedMedia,
1204 switches::kDisableFileSystem, 1205 switches::kDisableFileSystem,
1205 switches::kDisableGpuCompositing, 1206 switches::kDisableGpuCompositing,
1206 switches::kDisableGpuVsync, 1207 switches::kDisableGpuVsync,
(...skipping 11 matching lines...) Expand all
1218 switches::kDisableSVG1DOM, 1219 switches::kDisableSVG1DOM,
1219 switches::kDisableThreadedCompositing, 1220 switches::kDisableThreadedCompositing,
1220 switches::kDisableThreadedScrolling, 1221 switches::kDisableThreadedScrolling,
1221 switches::kDisableTouchAdjustment, 1222 switches::kDisableTouchAdjustment,
1222 switches::kDisableTouchDragDrop, 1223 switches::kDisableTouchDragDrop,
1223 switches::kDisableTouchEditing, 1224 switches::kDisableTouchEditing,
1224 switches::kDisableV8IdleTasks, 1225 switches::kDisableV8IdleTasks,
1225 switches::kDomAutomationController, 1226 switches::kDomAutomationController,
1226 switches::kEnableBeginFrameScheduling, 1227 switches::kEnableBeginFrameScheduling,
1227 switches::kEnableBleedingEdgeRenderingFastPaths, 1228 switches::kEnableBleedingEdgeRenderingFastPaths,
1229 switches::kEnableBlinkFeatures,
1228 switches::kEnableBrowserSideNavigation, 1230 switches::kEnableBrowserSideNavigation,
1229 switches::kEnablePreferCompositingToLCDText, 1231 switches::kEnablePreferCompositingToLCDText,
1230 switches::kEnableCredentialManagerAPI, 1232 switches::kEnableCredentialManagerAPI,
1231 switches::kEnableDeferredImageDecoding, 1233 switches::kEnableDeferredImageDecoding,
1232 switches::kEnableDelayAgnosticAec, 1234 switches::kEnableDelayAgnosticAec,
1233 switches::kEnableDisplayList2dCanvas, 1235 switches::kEnableDisplayList2dCanvas,
1234 switches::kEnableDistanceFieldText, 1236 switches::kEnableDistanceFieldText,
1235 switches::kEnableExperimentalCanvasFeatures, 1237 switches::kEnableExperimentalCanvasFeatures,
1236 switches::kEnableExperimentalWebPlatformFeatures, 1238 switches::kEnableExperimentalWebPlatformFeatures,
1237 switches::kEnableGPUClientLogging, 1239 switches::kEnableGPUClientLogging,
(...skipping 1155 matching lines...) Expand 10 before | Expand all | Expand 10 after
2393 if (worker_ref_count_ == 0) 2395 if (worker_ref_count_ == 0)
2394 Cleanup(); 2396 Cleanup();
2395 } 2397 }
2396 2398
2397 void RenderProcessHostImpl::GetAudioOutputControllers( 2399 void RenderProcessHostImpl::GetAudioOutputControllers(
2398 const GetAudioOutputControllersCallback& callback) const { 2400 const GetAudioOutputControllersCallback& callback) const {
2399 audio_renderer_host()->GetOutputControllers(callback); 2401 audio_renderer_host()->GetOutputControllers(callback);
2400 } 2402 }
2401 2403
2402 } // namespace content 2404 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698