OLD | NEW |
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 517 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
528 // Enables the option to show tabs as a vertical stack down the side of the | 528 // Enables the option to show tabs as a vertical stack down the side of the |
529 // browser window. | 529 // browser window. |
530 const char kEnableVerticalTabs[] = "enable-vertical-tabs"; | 530 const char kEnableVerticalTabs[] = "enable-vertical-tabs"; |
531 | 531 |
532 // Spawn threads to watch for excessive delays in specified message loops. | 532 // Spawn threads to watch for excessive delays in specified message loops. |
533 // User should set breakpoints on Alarm() to examine problematic thread. | 533 // User should set breakpoints on Alarm() to examine problematic thread. |
534 // Usage: -enable-watchdog=[ui][io] | 534 // Usage: -enable-watchdog=[ui][io] |
535 // Order of the listed sub-arguments does not matter. | 535 // Order of the listed sub-arguments does not matter. |
536 const char kEnableWatchdog[] = "enable-watchdog"; | 536 const char kEnableWatchdog[] = "enable-watchdog"; |
537 | 537 |
| 538 // Enable Web Intents. |
| 539 const char kEnableWebIntents[] = "enable-web-intents"; |
| 540 |
538 // Use WebSocket over SPDY. | 541 // Use WebSocket over SPDY. |
539 const char kEnableWebSocketOverSpdy[] = "enable-websocket-over-spdy"; | 542 const char kEnableWebSocketOverSpdy[] = "enable-websocket-over-spdy"; |
540 | 543 |
541 // Enable WebUI TaskManager. | 544 // Enable WebUI TaskManager. |
542 const char kEnableWebUITaskManager[] = "enable-webui-taskmanager"; | 545 const char kEnableWebUITaskManager[] = "enable-webui-taskmanager"; |
543 | 546 |
544 // Enables experimental features for Spellchecker. Right now, the first | 547 // Enables experimental features for Spellchecker. Right now, the first |
545 // experimental feature is auto spell correct, which corrects words which are | 548 // experimental feature is auto spell correct, which corrects words which are |
546 // misppelled by typing the word with two consecutive letters swapped. The | 549 // misppelled by typing the word with two consecutive letters swapped. The |
547 // features that will be added next are: | 550 // features that will be added next are: |
(...skipping 696 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1244 | 1247 |
1245 // ----------------------------------------------------------------------------- | 1248 // ----------------------------------------------------------------------------- |
1246 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1249 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1247 // | 1250 // |
1248 // You were going to just dump your switches here, weren't you? Instead, | 1251 // You were going to just dump your switches here, weren't you? Instead, |
1249 // please put them in alphabetical order above, or in order inside the | 1252 // please put them in alphabetical order above, or in order inside the |
1250 // appropriate ifdef at the bottom. The order should match the header. | 1253 // appropriate ifdef at the bottom. The order should match the header. |
1251 // ----------------------------------------------------------------------------- | 1254 // ----------------------------------------------------------------------------- |
1252 | 1255 |
1253 } // namespace switches | 1256 } // namespace switches |
OLD | NEW |