| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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 | 8 |
| 9 namespace switches { | 9 namespace switches { |
| 10 | 10 |
| (...skipping 219 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 230 // Enables StatsTable, logging statistics to a global named shared memory table. | 230 // Enables StatsTable, logging statistics to a global named shared memory table. |
| 231 const char kEnableStatsTable[] = "enable-stats-table"; | 231 const char kEnableStatsTable[] = "enable-stats-table"; |
| 232 | 232 |
| 233 // Enable syncing bookmarks to a Google Account. | 233 // Enable syncing bookmarks to a Google Account. |
| 234 const char kEnableSync[] = "enable-sync"; | 234 const char kEnableSync[] = "enable-sync"; |
| 235 | 235 |
| 236 // Whether the multiple profiles feature based on the user-data-dir flag is | 236 // Whether the multiple profiles feature based on the user-data-dir flag is |
| 237 // enabled or not. | 237 // enabled or not. |
| 238 const char kEnableUserDataDirProfiles[] = "enable-udd-profiles"; | 238 const char kEnableUserDataDirProfiles[] = "enable-udd-profiles"; |
| 239 | 239 |
| 240 // Enable user script support. | |
| 241 const char kEnableUserScripts[] = "enable-user-scripts"; | |
| 242 | |
| 243 // Spawn threads to watch for excessive delays in specified message loops. | 240 // Spawn threads to watch for excessive delays in specified message loops. |
| 244 // User should set breakpoints on Alarm() to examine problematic thread. | 241 // User should set breakpoints on Alarm() to examine problematic thread. |
| 245 // Usage: -enable-watchdog=[ui][io] | 242 // Usage: -enable-watchdog=[ui][io] |
| 246 // Order of the listed sub-arguments does not matter. | 243 // Order of the listed sub-arguments does not matter. |
| 247 const char kEnableWatchdog[] = "enable-watchdog"; | 244 const char kEnableWatchdog[] = "enable-watchdog"; |
| 248 | 245 |
| 249 // Enables experimental features for Spellchecker. Right now, the first | 246 // Enables experimental features for Spellchecker. Right now, the first |
| 250 // experimental feature is auto spell correct, which corrects words which are | 247 // experimental feature is auto spell correct, which corrects words which are |
| 251 // misppelled by typing the word with two consecutive letters swapped. The | 248 // misppelled by typing the word with two consecutive letters swapped. The |
| 252 // features that will be added next are: | 249 // features that will be added next are: |
| (...skipping 450 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 703 | 700 |
| 704 // ----------------------------------------------------------------------------- | 701 // ----------------------------------------------------------------------------- |
| 705 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 702 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 706 // | 703 // |
| 707 // You were going to just dump your switches here, weren't you? Instead, | 704 // You were going to just dump your switches here, weren't you? Instead, |
| 708 // please put them in alphabetical order above, or in order inside the | 705 // please put them in alphabetical order above, or in order inside the |
| 709 // appropriate ifdef at the bottom. The order should match the header. | 706 // appropriate ifdef at the bottom. The order should match the header. |
| 710 // ----------------------------------------------------------------------------- | 707 // ----------------------------------------------------------------------------- |
| 711 | 708 |
| 712 } // namespace switches | 709 } // namespace switches |
| OLD | NEW |