| 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 1103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1327 | 1324 |
| 1328 // ----------------------------------------------------------------------------- | 1325 // ----------------------------------------------------------------------------- |
| 1329 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1326 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1330 // | 1327 // |
| 1331 // You were going to just dump your switches here, weren't you? Instead, please | 1328 // You were going to just dump your switches here, weren't you? Instead, please |
| 1332 // put them in alphabetical order above, or in order inside the appropriate | 1329 // put them in alphabetical order above, or in order inside the appropriate |
| 1333 // ifdef at the bottom. The order should match the header. | 1330 // ifdef at the bottom. The order should match the header. |
| 1334 // ----------------------------------------------------------------------------- | 1331 // ----------------------------------------------------------------------------- |
| 1335 | 1332 |
| 1336 } // namespace switches | 1333 } // namespace switches |
| OLD | NEW |