| 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 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 167 const char kCloudPrintJobTitle[] = "cloud-print-job-title"; | 167 const char kCloudPrintJobTitle[] = "cloud-print-job-title"; |
| 168 | 168 |
| 169 // Setup cloud print proxy for provided printers. This does not start | 169 // Setup cloud print proxy for provided printers. This does not start |
| 170 // service or register proxy for autostart. | 170 // service or register proxy for autostart. |
| 171 const char kCloudPrintSetupProxy[] = "cloud-print-setup-proxy"; | 171 const char kCloudPrintSetupProxy[] = "cloud-print-setup-proxy"; |
| 172 | 172 |
| 173 // Comma-separated options to troubleshoot the component updater. Only valid | 173 // Comma-separated options to troubleshoot the component updater. Only valid |
| 174 // for the browser process. | 174 // for the browser process. |
| 175 const char kComponentUpdater[] = "component-updater"; | 175 const char kComponentUpdater[] = "component-updater"; |
| 176 | 176 |
| 177 // Causes the browser process to inspect loaded and registered DLLs for known | |
| 178 // conflicts and warn the user. | |
| 179 const char kConflictingModulesCheck[] = "conflicting-modules-check"; | |
| 180 | |
| 181 // Comma-separated list of BrowserThreads that cause browser process to crash | 177 // Comma-separated list of BrowserThreads that cause browser process to crash |
| 182 // if the given browser thread is not responsive. UI,IO,DB,FILE,CACHE are the | 178 // if the given browser thread is not responsive. UI,IO,DB,FILE,CACHE are the |
| 183 // list of BrowserThreads that are supported. | 179 // list of BrowserThreads that are supported. |
| 184 // | 180 // |
| 185 // For example: | 181 // For example: |
| 186 // --crash-on-hang-threads=UI:3:18,IO:3:18 --> Crash the browser if UI or IO | 182 // --crash-on-hang-threads=UI:3:18,IO:3:18 --> Crash the browser if UI or IO |
| 187 // is not responsive for 18 seconds and the number of browser threads that | 183 // is not responsive for 18 seconds and the number of browser threads that |
| 188 // are responding is less than or equal to 3. | 184 // are responding is less than or equal to 3. |
| 189 const char kCrashOnHangThreads[] = "crash-on-hang-threads"; | 185 const char kCrashOnHangThreads[] = "crash-on-hang-threads"; |
| 190 | 186 |
| (...skipping 1220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1411 | 1407 |
| 1412 // ----------------------------------------------------------------------------- | 1408 // ----------------------------------------------------------------------------- |
| 1413 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1409 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1414 // | 1410 // |
| 1415 // You were going to just dump your switches here, weren't you? Instead, please | 1411 // You were going to just dump your switches here, weren't you? Instead, please |
| 1416 // put them in alphabetical order above, or in order inside the appropriate | 1412 // put them in alphabetical order above, or in order inside the appropriate |
| 1417 // ifdef at the bottom. The order should match the header. | 1413 // ifdef at the bottom. The order should match the header. |
| 1418 // ----------------------------------------------------------------------------- | 1414 // ----------------------------------------------------------------------------- |
| 1419 | 1415 |
| 1420 } // namespace switches | 1416 } // namespace switches |
| OLD | NEW |