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

Side by Side Diff: content/public/common/content_switches.cc

Issue 897723005: Allow using the namespace sandbox in zygote host. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: More 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
« no previous file with comments | « content/public/common/content_switches.h ('k') | content/zygote/zygote_main_linux.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 #include "content/public/common/content_switches.h" 5 #include "content/public/common/content_switches.h"
6 6
7 namespace switches { 7 namespace switches {
8 8
9 // The number of MSAA samples for canvas2D. Requires MSAA support by GPU to 9 // The number of MSAA samples for canvas2D. Requires MSAA support by GPU to
10 // have an effect. 0 disables MSAA. 10 // have an effect. 0 disables MSAA.
(...skipping 339 matching lines...) Expand 10 before | Expand all | Expand 10 after
350 // Dynamically apply color profiles to web content images. 350 // Dynamically apply color profiles to web content images.
351 const char kEnableImageColorProfiles[] = "enable-image-color-profiles"; 351 const char kEnableImageColorProfiles[] = "enable-image-color-profiles";
352 352
353 // Force logging to be enabled. Logging is disabled by default in release 353 // Force logging to be enabled. Logging is disabled by default in release
354 // builds. 354 // builds.
355 const char kEnableLogging[] = "enable-logging"; 355 const char kEnableLogging[] = "enable-logging";
356 356
357 // Enables the memory benchmarking extension 357 // Enables the memory benchmarking extension
358 const char kEnableMemoryBenchmarking[] = "enable-memory-benchmarking"; 358 const char kEnableMemoryBenchmarking[] = "enable-memory-benchmarking";
359 359
360 // Prefer the namespace sandbox over the setuid sandbox when possible.
361 const char kEnableNamespaceSandbox[] = "enable-namespace-sandbox";
362
360 // Enables the network information API. 363 // Enables the network information API.
361 const char kEnableNetworkInformation[] = "enable-network-information"; 364 const char kEnableNetworkInformation[] = "enable-network-information";
362 365
363 // Enable rasterizer that writes directly to GPU memory. 366 // Enable rasterizer that writes directly to GPU memory.
364 const char kEnableOneCopy[] = "enable-one-copy"; 367 const char kEnableOneCopy[] = "enable-one-copy";
365 368
366 // Enables use of hardware overlay for fullscreen video playback. Android only. 369 // Enables use of hardware overlay for fullscreen video playback. Android only.
367 const char kEnableOverlayFullscreenVideo[] = "enable-overlay-fullscreen-video"; 370 const char kEnableOverlayFullscreenVideo[] = "enable-overlay-fullscreen-video";
368 371
369 // Enables compositor-accelerated touch-screen pinch gestures. 372 // Enables compositor-accelerated touch-screen pinch gestures.
(...skipping 597 matching lines...) Expand 10 before | Expand all | Expand 10 after
967 const char kEnableNpapi[] = "enable-npapi"; 970 const char kEnableNpapi[] = "enable-npapi";
968 971
969 #if defined(ENABLE_PLUGINS) 972 #if defined(ENABLE_PLUGINS)
970 // Enables the plugin power saver feature. 973 // Enables the plugin power saver feature.
971 const char kEnablePluginPowerSaver[] = "enable-plugin-power-saver"; 974 const char kEnablePluginPowerSaver[] = "enable-plugin-power-saver";
972 #endif 975 #endif
973 976
974 // Don't dump stuff here, follow the same order as the header. 977 // Don't dump stuff here, follow the same order as the header.
975 978
976 } // namespace switches 979 } // namespace switches
OLDNEW
« no previous file with comments | « content/public/common/content_switches.h ('k') | content/zygote/zygote_main_linux.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698