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

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: address jochen review comments 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 1177 matching lines...) Expand 10 before | Expand all | Expand 10 after
1188 switches::kAuditAllHandles, 1188 switches::kAuditAllHandles,
1189 switches::kAuditHandles, 1189 switches::kAuditHandles,
1190 switches::kBlinkPlatformLogChannels, 1190 switches::kBlinkPlatformLogChannels,
1191 switches::kBlockCrossSiteDocuments, 1191 switches::kBlockCrossSiteDocuments,
1192 switches::kDefaultTileWidth, 1192 switches::kDefaultTileWidth,
1193 switches::kDefaultTileHeight, 1193 switches::kDefaultTileHeight,
1194 switches::kDisable3DAPIs, 1194 switches::kDisable3DAPIs,
1195 switches::kDisableAcceleratedJpegDecoding, 1195 switches::kDisableAcceleratedJpegDecoding,
1196 switches::kDisableAcceleratedVideoDecode, 1196 switches::kDisableAcceleratedVideoDecode,
1197 switches::kDisableBlinkScheduler, 1197 switches::kDisableBlinkScheduler,
1198 switches::kDisableBlinkFeatures,
1198 switches::kDisableBreakpad, 1199 switches::kDisableBreakpad,
1199 switches::kDisablePreferCompositingToLCDText, 1200 switches::kDisablePreferCompositingToLCDText,
1200 switches::kDisableDatabases, 1201 switches::kDisableDatabases,
1201 switches::kDisableDirectNPAPIRequests, 1202 switches::kDisableDirectNPAPIRequests,
1202 switches::kDisableDisplayList2dCanvas, 1203 switches::kDisableDisplayList2dCanvas,
1203 switches::kDisableDistanceFieldText, 1204 switches::kDisableDistanceFieldText,
1204 switches::kDisableEncryptedMedia, 1205 switches::kDisableEncryptedMedia,
1205 switches::kDisableFileSystem, 1206 switches::kDisableFileSystem,
1206 switches::kDisableGpuCompositing, 1207 switches::kDisableGpuCompositing,
1207 switches::kDisableGpuVsync, 1208 switches::kDisableGpuVsync,
(...skipping 12 matching lines...) Expand all
1220 switches::kDisableSVG1DOM, 1221 switches::kDisableSVG1DOM,
1221 switches::kDisableThreadedCompositing, 1222 switches::kDisableThreadedCompositing,
1222 switches::kDisableThreadedScrolling, 1223 switches::kDisableThreadedScrolling,
1223 switches::kDisableTouchAdjustment, 1224 switches::kDisableTouchAdjustment,
1224 switches::kDisableTouchDragDrop, 1225 switches::kDisableTouchDragDrop,
1225 switches::kDisableTouchEditing, 1226 switches::kDisableTouchEditing,
1226 switches::kDisableV8IdleTasks, 1227 switches::kDisableV8IdleTasks,
1227 switches::kDomAutomationController, 1228 switches::kDomAutomationController,
1228 switches::kEnableBeginFrameScheduling, 1229 switches::kEnableBeginFrameScheduling,
1229 switches::kEnableBleedingEdgeRenderingFastPaths, 1230 switches::kEnableBleedingEdgeRenderingFastPaths,
1231 switches::kEnableBlinkFeatures,
1230 switches::kEnableBrowserSideNavigation, 1232 switches::kEnableBrowserSideNavigation,
1231 switches::kEnablePreferCompositingToLCDText, 1233 switches::kEnablePreferCompositingToLCDText,
1232 switches::kEnableCredentialManagerAPI, 1234 switches::kEnableCredentialManagerAPI,
1233 switches::kEnableDeferredImageDecoding, 1235 switches::kEnableDeferredImageDecoding,
1234 switches::kEnableDelayAgnosticAec, 1236 switches::kEnableDelayAgnosticAec,
1235 switches::kEnableDisplayList2dCanvas, 1237 switches::kEnableDisplayList2dCanvas,
1236 switches::kEnableDistanceFieldText, 1238 switches::kEnableDistanceFieldText,
1237 switches::kEnableExperimentalCanvasFeatures, 1239 switches::kEnableExperimentalCanvasFeatures,
1238 switches::kEnableExperimentalWebPlatformFeatures, 1240 switches::kEnableExperimentalWebPlatformFeatures,
1239 switches::kEnableGPUClientLogging, 1241 switches::kEnableGPUClientLogging,
(...skipping 1155 matching lines...) Expand 10 before | Expand all | Expand 10 after
2395 if (worker_ref_count_ == 0) 2397 if (worker_ref_count_ == 0)
2396 Cleanup(); 2398 Cleanup();
2397 } 2399 }
2398 2400
2399 void RenderProcessHostImpl::GetAudioOutputControllers( 2401 void RenderProcessHostImpl::GetAudioOutputControllers(
2400 const GetAudioOutputControllersCallback& callback) const { 2402 const GetAudioOutputControllersCallback& callback) const {
2401 audio_renderer_host()->GetOutputControllers(callback); 2403 audio_renderer_host()->GetOutputControllers(callback);
2402 } 2404 }
2403 2405
2404 } // namespace content 2406 } // namespace content
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/login/chrome_restart_request.cc ('k') | content/child/runtime_features.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698