OLD | NEW |
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 // Defines all the command-line switches used by Chrome. | 5 // Defines all the command-line switches used by Chrome. |
6 | 6 |
7 #ifndef CHROME_COMMON_CHROME_SWITCHES_H_ | 7 #ifndef CHROME_COMMON_CHROME_SWITCHES_H_ |
8 #define CHROME_COMMON_CHROME_SWITCHES_H_ | 8 #define CHROME_COMMON_CHROME_SWITCHES_H_ |
9 | 9 |
10 #include "build/build_config.h" | 10 #include "build/build_config.h" |
(...skipping 243 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
254 // TODO(avayvod): Remove this flag when it's unnecessary for testing | 254 // TODO(avayvod): Remove this flag when it's unnecessary for testing |
255 // purposes. | 255 // purposes. |
256 extern const char kLoginScreen[]; | 256 extern const char kLoginScreen[]; |
257 extern const char kLoginScreenSize[]; | 257 extern const char kLoginScreenSize[]; |
258 extern const char kTestLoadLibcros[]; | 258 extern const char kTestLoadLibcros[]; |
259 extern const char kProfile[]; | 259 extern const char kProfile[]; |
260 extern const char kLoginProfile[]; | 260 extern const char kLoginProfile[]; |
261 extern const char kLoginUser[]; | 261 extern const char kLoginUser[]; |
262 extern const char kChromeosFrame[]; | 262 extern const char kChromeosFrame[]; |
263 extern const char kStartupManifest[]; | 263 extern const char kStartupManifest[]; |
264 extern const char kVertScrollDelta[]; | 264 extern const char kScrollPixels[]; |
265 #endif | 265 #endif |
266 | 266 |
267 #if defined(OS_WIN) | 267 #if defined(OS_WIN) |
268 extern const char kUseSChannel[]; | 268 extern const char kUseSChannel[]; |
269 #endif | 269 #endif |
270 | 270 |
271 #if defined(OS_POSIX) | 271 #if defined(OS_POSIX) |
272 extern const char kEnableCrashReporter[]; | 272 extern const char kEnableCrashReporter[]; |
273 extern const char kNoProcessSingletonDialog[]; | 273 extern const char kNoProcessSingletonDialog[]; |
274 #endif | 274 #endif |
(...skipping 24 matching lines...) Expand all Loading... |
299 #endif | 299 #endif |
300 // Return true if the switches indicate the seccomp sandbox is enabled. | 300 // Return true if the switches indicate the seccomp sandbox is enabled. |
301 bool SeccompSandboxEnabled(); | 301 bool SeccompSandboxEnabled(); |
302 | 302 |
303 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 303 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
304 // alphabetical order, or in one of the ifdefs (also in order in each section). | 304 // alphabetical order, or in one of the ifdefs (also in order in each section). |
305 | 305 |
306 } // namespace switches | 306 } // namespace switches |
307 | 307 |
308 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 308 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
OLD | NEW |