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