| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 201 const char kCrashOnHangThreads[] = "crash-on-hang-threads"; | 201 const char kCrashOnHangThreads[] = "crash-on-hang-threads"; |
| 202 | 202 |
| 203 // Causes the browser process to crash if the number of browser threads that | 203 // Causes the browser process to crash if the number of browser threads that |
| 204 // are responding is equal to the given number. | 204 // are responding is equal to the given number. |
| 205 // | 205 // |
| 206 // For example: | 206 // For example: |
| 207 // --crash-on-live=1 --> Crash if only one thread is responsive and all | 207 // --crash-on-live=1 --> Crash if only one thread is responsive and all |
| 208 // other threads are not responsive. | 208 // other threads are not responsive. |
| 209 const char kCrashOnLive[] = "crash-on-live"; | 209 const char kCrashOnLive[] = "crash-on-live"; |
| 210 | 210 |
| 211 // If true the mobile bookmarks folder is created on the sync side. | |
| 212 const char kCreateMobileBookmarksFolder[] = "create-mobile-bookmarks-folder"; | |
| 213 | |
| 214 // Path to the inspector files on disk (allows reloading of devtool files | 211 // Path to the inspector files on disk (allows reloading of devtool files |
| 215 // without having to restart the browser). | 212 // without having to restart the browser). |
| 216 const char kDebugDevToolsFrontend[] = "debug-devtools-frontend"; | 213 const char kDebugDevToolsFrontend[] = "debug-devtools-frontend"; |
| 217 | 214 |
| 218 // Enables a frame context menu item that toggles the frame in and out of glass | 215 // Enables a frame context menu item that toggles the frame in and out of glass |
| 219 // mode (Windows Vista and up only). | 216 // mode (Windows Vista and up only). |
| 220 const char kDebugEnableFrameToggle[] = "debug-enable-frame-toggle"; | 217 const char kDebugEnableFrameToggle[] = "debug-enable-frame-toggle"; |
| 221 | 218 |
| 222 // Enables support to debug printing subsystem. | 219 // Enables support to debug printing subsystem. |
| 223 const char kDebugPrint[] = "debug-print"; | 220 const char kDebugPrint[] = "debug-print"; |
| (...skipping 1116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1340 | 1337 |
| 1341 // ----------------------------------------------------------------------------- | 1338 // ----------------------------------------------------------------------------- |
| 1342 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1339 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1343 // | 1340 // |
| 1344 // You were going to just dump your switches here, weren't you? Instead, please | 1341 // You were going to just dump your switches here, weren't you? Instead, please |
| 1345 // put them in alphabetical order above, or in order inside the appropriate | 1342 // put them in alphabetical order above, or in order inside the appropriate |
| 1346 // ifdef at the bottom. The order should match the header. | 1343 // ifdef at the bottom. The order should match the header. |
| 1347 // ----------------------------------------------------------------------------- | 1344 // ----------------------------------------------------------------------------- |
| 1348 | 1345 |
| 1349 } // namespace switches | 1346 } // namespace switches |
| OLD | NEW |