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

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

Issue 3064002: Landing OEM customization CL for Denis... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 4 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) 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 282 matching lines...) Expand 10 before | Expand all | Expand 10 after
293 // TODO(avayvod): Remove this flag when it's unnecessary for testing 293 // TODO(avayvod): Remove this flag when it's unnecessary for testing
294 // purposes. 294 // purposes.
295 extern const char kLoginScreen[]; 295 extern const char kLoginScreen[];
296 extern const char kLoginScreenSize[]; 296 extern const char kLoginScreenSize[];
297 extern const char kTestLoadLibcros[]; 297 extern const char kTestLoadLibcros[];
298 extern const char kProfile[]; 298 extern const char kProfile[];
299 extern const char kLoginProfile[]; 299 extern const char kLoginProfile[];
300 extern const char kLoginUser[]; 300 extern const char kLoginUser[];
301 extern const char kChromeosFrame[]; 301 extern const char kChromeosFrame[];
302 extern const char kChromeosLogToFile[]; 302 extern const char kChromeosLogToFile[];
303 // TODO(denisromanov): Remove this flag when it is not needed for testing.
304 extern const char kStartupManifest[];
305 // TODO(denisromanov): Remove this flag when it is not needed for testing, too.
306 extern const char kServicesManifest[];
307 #endif 303 #endif
308 304
309 #if defined(OS_LINUX) 305 #if defined(OS_LINUX)
310 extern const char kScrollPixels[]; 306 extern const char kScrollPixels[];
311 #endif 307 #endif
312 308
313 #if defined(OS_MACOSX) || defined(OS_WIN) 309 #if defined(OS_MACOSX) || defined(OS_WIN)
314 extern const char kUseSystemSSL[]; 310 extern const char kUseSystemSSL[];
315 #endif 311 #endif
316 312
(...skipping 30 matching lines...) Expand all
347 #endif 343 #endif
348 // Return true if the switches indicate the seccomp sandbox is enabled. 344 // Return true if the switches indicate the seccomp sandbox is enabled.
349 bool SeccompSandboxEnabled(); 345 bool SeccompSandboxEnabled();
350 346
351 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in 347 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in
352 // alphabetical order, or in one of the ifdefs (also in order in each section). 348 // alphabetical order, or in one of the ifdefs (also in order in each section).
353 349
354 } // namespace switches 350 } // namespace switches
355 351
356 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ 352 #endif // CHROME_COMMON_CHROME_SWITCHES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698