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

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

Issue 7047003: Add --enable-websocket-over-spdy command-line flag (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: fixed problems yutak addressed Created 9 years, 7 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 509 matching lines...) Expand 10 before | Expand all | Expand 10 after
520 // Enables the option to show tabs as a vertical stack down the side of the 520 // Enables the option to show tabs as a vertical stack down the side of the
521 // browser window. 521 // browser window.
522 const char kEnableVerticalTabs[] = "enable-vertical-tabs"; 522 const char kEnableVerticalTabs[] = "enable-vertical-tabs";
523 523
524 // Spawn threads to watch for excessive delays in specified message loops. 524 // Spawn threads to watch for excessive delays in specified message loops.
525 // User should set breakpoints on Alarm() to examine problematic thread. 525 // User should set breakpoints on Alarm() to examine problematic thread.
526 // Usage: -enable-watchdog=[ui][io] 526 // Usage: -enable-watchdog=[ui][io]
527 // Order of the listed sub-arguments does not matter. 527 // Order of the listed sub-arguments does not matter.
528 const char kEnableWatchdog[] = "enable-watchdog"; 528 const char kEnableWatchdog[] = "enable-watchdog";
529 529
530 // Use WebSocket over SPDY.
531 const char kEnableWebSocketOverSpdy[] = "enable-websocket-over-spdy";
532
530 // Enables experimental features for Spellchecker. Right now, the first 533 // Enables experimental features for Spellchecker. Right now, the first
531 // experimental feature is auto spell correct, which corrects words which are 534 // experimental feature is auto spell correct, which corrects words which are
532 // misppelled by typing the word with two consecutive letters swapped. The 535 // misppelled by typing the word with two consecutive letters swapped. The
533 // features that will be added next are: 536 // features that will be added next are:
534 // 1 - Allow multiple spellcheckers to work simultaneously. 537 // 1 - Allow multiple spellcheckers to work simultaneously.
535 // 2 - Allow automatic detection of spell check language. 538 // 2 - Allow automatic detection of spell check language.
536 // TODO(sidchat): Implement the above fetaures to work under this flag. 539 // TODO(sidchat): Implement the above fetaures to work under this flag.
537 const char kExperimentalSpellcheckerFeatures[] = 540 const char kExperimentalSpellcheckerFeatures[] =
538 "experimental-spellchecker-features"; 541 "experimental-spellchecker-features";
539 542
(...skipping 652 matching lines...) Expand 10 before | Expand all | Expand 10 after
1192 1195
1193 // ----------------------------------------------------------------------------- 1196 // -----------------------------------------------------------------------------
1194 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1197 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1195 // 1198 //
1196 // You were going to just dump your switches here, weren't you? Instead, 1199 // You were going to just dump your switches here, weren't you? Instead,
1197 // please put them in alphabetical order above, or in order inside the 1200 // please put them in alphabetical order above, or in order inside the
1198 // appropriate ifdef at the bottom. The order should match the header. 1201 // appropriate ifdef at the bottom. The order should match the header.
1199 // ----------------------------------------------------------------------------- 1202 // -----------------------------------------------------------------------------
1200 1203
1201 } // namespace switches 1204 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698