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

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

Issue 217403002: Remove kChildCleanExit since it's not used anymore. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 6 years, 8 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 | Annotate | Revision Log
« no previous file with comments | « content/public/common/content_switches.h ('k') | no next file » | 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 #include "base/command_line.h" 7 #include "base/command_line.h"
8 8
9 namespace switches { 9 namespace switches {
10 10
(...skipping 1029 matching lines...) Expand 10 before | Expand all | Expand 10 after
1040 1040
1041 #if defined(OS_MACOSX) && !defined(OS_IOS) 1041 #if defined(OS_MACOSX) && !defined(OS_IOS)
1042 const char kEnableCarbonInterposing[] = "enable-carbon-interposing"; 1042 const char kEnableCarbonInterposing[] = "enable-carbon-interposing";
1043 1043
1044 // Disables support for Core Animation plugins. This is triggered when 1044 // Disables support for Core Animation plugins. This is triggered when
1045 // accelerated compositing is disabled. See http://crbug.com/122430 . 1045 // accelerated compositing is disabled. See http://crbug.com/122430 .
1046 const char kDisableCoreAnimationPlugins[] = 1046 const char kDisableCoreAnimationPlugins[] =
1047 "disable-core-animation-plugins"; 1047 "disable-core-animation-plugins";
1048 #endif 1048 #endif
1049 1049
1050 #if defined(OS_POSIX)
1051 // Causes the child processes to cleanly exit via calling exit().
1052 const char kChildCleanExit[] = "child-clean-exit";
1053 #endif
1054
1055 // Don't dump stuff here, follow the same order as the header. 1050 // Don't dump stuff here, follow the same order as the header.
1056 1051
1057 } // namespace switches 1052 } // namespace switches
OLDNEW
« no previous file with comments | « content/public/common/content_switches.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698