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

Side by Side Diff: chrome/common/chrome_switches.cc

Issue 647017: linux: enable seccomp sandbox by default (Closed)
Patch Set: better Created 10 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) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 "chrome/common/chrome_switches.h" 5 #include "chrome/common/chrome_switches.h"
6 6
7 #include "base/base_switches.h" 7 #include "base/base_switches.h"
8 8
9 namespace switches { 9 namespace switches {
10 10
(...skipping 248 matching lines...) Expand 10 before | Expand all | Expand 10 after
259 // Enable AutoFill++. 259 // Enable AutoFill++.
260 const char kEnableNewAutoFill[] = "enable-new-autofill"; 260 const char kEnableNewAutoFill[] = "enable-new-autofill";
261 261
262 // Enable Privacy Blacklists. 262 // Enable Privacy Blacklists.
263 const char kEnablePrivacyBlacklists[] = "enable-privacy-blacklists"; 263 const char kEnablePrivacyBlacklists[] = "enable-privacy-blacklists";
264 264
265 // Turns on the accessibility in the renderer. Off by default until 265 // Turns on the accessibility in the renderer. Off by default until
266 // http://b/issue?id=1432077 is fixed. 266 // http://b/issue?id=1432077 is fixed.
267 const char kEnableRendererAccessibility[] = "enable-renderer-accessibility"; 267 const char kEnableRendererAccessibility[] = "enable-renderer-accessibility";
268 268
269 // Enable the seccomp sandbox (Linux only) 269 // Disable the seccomp sandbox (Linux only)
270 const char kEnableSeccompSandbox[] = "enable-seccomp-sandbox"; 270 const char kDisableSeccompSandbox[] = "disable-seccomp-sandbox";
271 271
272 // Enable session storage. Still buggy. 272 // Enable session storage. Still buggy.
273 const char kEnableSessionStorage[] = "enable-session-storage"; 273 const char kEnableSessionStorage[] = "enable-session-storage";
274 274
275 // Enables StatsTable, logging statistics to a global named shared memory table. 275 // Enables StatsTable, logging statistics to a global named shared memory table.
276 const char kEnableStatsTable[] = "enable-stats-table"; 276 const char kEnableStatsTable[] = "enable-stats-table";
277 277
278 // Enable syncing browser data to a Google Account. 278 // Enable syncing browser data to a Google Account.
279 const char kEnableSync[] = "enable-sync"; 279 const char kEnableSync[] = "enable-sync";
280 280
(...skipping 539 matching lines...) Expand 10 before | Expand all | Expand 10 after
820 820
821 // ----------------------------------------------------------------------------- 821 // -----------------------------------------------------------------------------
822 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 822 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
823 // 823 //
824 // You were going to just dump your switches here, weren't you? Instead, 824 // You were going to just dump your switches here, weren't you? Instead,
825 // please put them in alphabetical order above, or in order inside the 825 // please put them in alphabetical order above, or in order inside the
826 // appropriate ifdef at the bottom. The order should match the header. 826 // appropriate ifdef at the bottom. The order should match the header.
827 // ----------------------------------------------------------------------------- 827 // -----------------------------------------------------------------------------
828 828
829 } // namespace switches 829 } // namespace switches
OLDNEW
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | chrome/renderer/renderer_main_platform_delegate_linux.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698