Chromium Code Reviews| Index: chrome/common/chrome_switches.cc |
| =================================================================== |
| --- chrome/common/chrome_switches.cc (revision 163292) |
| +++ chrome/common/chrome_switches.cc (working copy) |
| @@ -1540,6 +1540,12 @@ |
| // Windows 8 and higher. Used when relaunching metro Chrome. |
| const char kForceDesktop[] = "force-desktop"; |
| +// Allows for disabling the overlapped I/O for TCP reads. |
| +// Possible values are "on" or "off". |
| +// The default is "on" which matches the existing behavior. |
|
rvargas (doing something else)
2012/10/23 00:19:40
I'm a little confused by this. The "normal" patter
pmeenan
2012/10/23 14:29:54
The command line can force the trial on or off (fo
rvargas (doing something else)
2012/10/24 18:48:09
Thanks for the explanation... I figured it was for
|
| +// "off" switches to use non-blocking reads and WSAEventSelect. |
| +const char kOverlappedRead[] = "overlapped-reads"; |
| + |
| // Relaunches metro Chrome on Windows 8 and higher using a given shortcut. |
| const char kRelaunchShortcut[] = "relaunch-shortcut"; |