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

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

Issue 10916016: Switch the TCP reads on Windows to use non-blocking/non-async I/O. (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: Created 8 years, 2 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) 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 // 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 413 matching lines...) Expand 10 before | Expand all | Expand 10 after
424 extern const char kRelauncherProcess[]; 424 extern const char kRelauncherProcess[];
425 extern const char kUseMockKeychain[]; 425 extern const char kUseMockKeychain[];
426 #endif 426 #endif
427 427
428 #if defined(OS_WIN) 428 #if defined(OS_WIN)
429 extern const char kDisableDesktopShortcuts[]; 429 extern const char kDisableDesktopShortcuts[];
430 extern const char kEnableSyncCredentialCaching[]; 430 extern const char kEnableSyncCredentialCaching[];
431 extern const char kForceImmersive[]; 431 extern const char kForceImmersive[];
432 extern const char kForceDesktop[]; 432 extern const char kForceDesktop[];
433 extern const char kModeSwitch[]; 433 extern const char kModeSwitch[];
434 extern const char kOverlappedRead[];
434 extern const char kPrintRaster[]; 435 extern const char kPrintRaster[];
435 extern const char kRelaunchShortcut[]; 436 extern const char kRelaunchShortcut[];
436 extern const char kWaitForMutex[]; 437 extern const char kWaitForMutex[];
437 #endif 438 #endif
438 439
439 #if defined(USE_AURA) 440 #if defined(USE_AURA)
440 extern const char kDisableTCVA[]; 441 extern const char kDisableTCVA[];
441 extern const char kOpenAsh[]; 442 extern const char kOpenAsh[];
442 #endif 443 #endif
443 444
(...skipping 11 matching lines...) Expand all
455 #else 456 #else
456 extern const char kEnablePrintPreview[]; 457 extern const char kEnablePrintPreview[];
457 #endif 458 #endif
458 459
459 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in 460 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in
460 // alphabetical order, or in one of the ifdefs (also in order in each section). 461 // alphabetical order, or in one of the ifdefs (also in order in each section).
461 462
462 } // namespace switches 463 } // namespace switches
463 464
464 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ 465 #endif // CHROME_COMMON_CHROME_SWITCHES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698