| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 668 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 679 | 679 |
| 680 // Uninstall an extension with the specified extension id. | 680 // Uninstall an extension with the specified extension id. |
| 681 const char kUninstallExtension[] = "uninstall-extension"; | 681 const char kUninstallExtension[] = "uninstall-extension"; |
| 682 | 682 |
| 683 // Load an NPAPI plugin from the specified path. | 683 // Load an NPAPI plugin from the specified path. |
| 684 const char kLoadPlugin[] = "load-plugin"; | 684 const char kLoadPlugin[] = "load-plugin"; |
| 685 | 685 |
| 686 // Load NPAPI plugins from the specified directory. | 686 // Load NPAPI plugins from the specified directory. |
| 687 const char kExtraPluginDir[] = "extra-plugin-dir"; | 687 const char kExtraPluginDir[] = "extra-plugin-dir"; |
| 688 | 688 |
| 689 // Make plugin processes log their sent and received messages to LOG(INFO). | 689 // Make plugin processes log their sent and received messages to VLOG(1). |
| 690 const char kLogPluginMessages[] = "log-plugin-messages"; | 690 const char kLogPluginMessages[] = "log-plugin-messages"; |
| 691 | 691 |
| 692 // Sets the minimum log level. Valid values are from 0 to 3: | 692 // Sets the minimum log level. Valid values are from 0 to 3: |
| 693 // INFO = 0, WARNING = 1, LOG_ERROR = 2, LOG_FATAL = 3. | 693 // INFO = 0, WARNING = 1, LOG_ERROR = 2, LOG_FATAL = 3. |
| 694 const char kLoggingLevel[] = "log-level"; | 694 const char kLoggingLevel[] = "log-level"; |
| 695 | 695 |
| 696 // Make Chrome default browser | 696 // Make Chrome default browser |
| 697 const char kMakeDefaultBrowser[] = "make-default-browser"; | 697 const char kMakeDefaultBrowser[] = "make-default-browser"; |
| 698 | 698 |
| 699 // Forces the maximum disk space to be used by the media cache, in bytes. | 699 // Forces the maximum disk space to be used by the media cache, in bytes. |
| (...skipping 560 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1260 | 1260 |
| 1261 // ----------------------------------------------------------------------------- | 1261 // ----------------------------------------------------------------------------- |
| 1262 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1262 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1263 // | 1263 // |
| 1264 // You were going to just dump your switches here, weren't you? Instead, | 1264 // You were going to just dump your switches here, weren't you? Instead, |
| 1265 // please put them in alphabetical order above, or in order inside the | 1265 // please put them in alphabetical order above, or in order inside the |
| 1266 // appropriate ifdef at the bottom. The order should match the header. | 1266 // appropriate ifdef at the bottom. The order should match the header. |
| 1267 // ----------------------------------------------------------------------------- | 1267 // ----------------------------------------------------------------------------- |
| 1268 | 1268 |
| 1269 } // namespace switches | 1269 } // namespace switches |
| OLD | NEW |