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

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

Issue 7840041: Refactor some more BrowserMain code. Move core code that's required by all embedders to content. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: sync Created 9 years, 3 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
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 #include "base/command_line.h" 8 #include "base/command_line.h"
9 9
10 namespace switches { 10 namespace switches {
(...skipping 1104 matching lines...) Expand 10 before | Expand all | Expand 10 after
1115 1115
1116 #ifndef NDEBUG 1116 #ifndef NDEBUG
1117 // Skips all other OOBE pages after user login. 1117 // Skips all other OOBE pages after user login.
1118 const char kOobeSkipPostLogin[] = "oobe-skip-postlogin"; 1118 const char kOobeSkipPostLogin[] = "oobe-skip-postlogin";
1119 1119
1120 // Enables overriding the path off file manager extension. 1120 // Enables overriding the path off file manager extension.
1121 const char kFileManagerExtensionPath[] = "filemgr-ext-path"; 1121 const char kFileManagerExtensionPath[] = "filemgr-ext-path";
1122 #endif 1122 #endif
1123 #endif 1123 #endif
1124 1124
1125 #if defined(OS_MACOSX) || defined(OS_WIN)
1126 // Use the system SSL library (Secure Transport on Mac, SChannel on Windows)
1127 // instead of NSS for SSL.
1128 const char kUseSystemSSL[] = "use-system-ssl";
1129 #endif
1130
1131 #if defined(OS_POSIX) 1125 #if defined(OS_POSIX)
1132 // A flag, generated internally by Chrome for renderer and other helper process 1126 // A flag, generated internally by Chrome for renderer and other helper process
1133 // command lines on Linux and Mac. It tells the helper process to enable crash 1127 // command lines on Linux and Mac. It tells the helper process to enable crash
1134 // dumping and reporting, because helpers cannot access the profile or other 1128 // dumping and reporting, because helpers cannot access the profile or other
1135 // files needed to make this decision. 1129 // files needed to make this decision.
1136 const char kEnableCrashReporter[] = "enable-crash-reporter"; 1130 const char kEnableCrashReporter[] = "enable-crash-reporter";
1137 1131
1138 // Bypass the error dialog when the profile lock couldn't be attained. 1132 // Bypass the error dialog when the profile lock couldn't be attained.
1139 // This switch is used during automated testing. 1133 // This switch is used during automated testing.
1140 const char kNoProcessSingletonDialog[] = "no-process-singleton-dialog"; 1134 const char kNoProcessSingletonDialog[] = "no-process-singleton-dialog";
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
1232 1226
1233 // ----------------------------------------------------------------------------- 1227 // -----------------------------------------------------------------------------
1234 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1228 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1235 // 1229 //
1236 // You were going to just dump your switches here, weren't you? Instead, 1230 // You were going to just dump your switches here, weren't you? Instead,
1237 // please put them in alphabetical order above, or in order inside the 1231 // please put them in alphabetical order above, or in order inside the
1238 // appropriate ifdef at the bottom. The order should match the header. 1232 // appropriate ifdef at the bottom. The order should match the header.
1239 // ----------------------------------------------------------------------------- 1233 // -----------------------------------------------------------------------------
1240 1234
1241 } // namespace switches 1235 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698