| 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 | 8 |
| 9 namespace switches { | 9 namespace switches { |
| 10 | 10 |
| (...skipping 415 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 426 | 426 |
| 427 // Package an extension to a .crx installable file from a given directory. | 427 // Package an extension to a .crx installable file from a given directory. |
| 428 const char kPackExtension[] = "pack-extension"; | 428 const char kPackExtension[] = "pack-extension"; |
| 429 | 429 |
| 430 // Optional PEM private key is to use in signing packaged .crx. | 430 // Optional PEM private key is to use in signing packaged .crx. |
| 431 const char kPackExtensionKey[] = "pack-extension-key"; | 431 const char kPackExtensionKey[] = "pack-extension-key"; |
| 432 | 432 |
| 433 // Specifies the path to the user data folder for the parent profile. | 433 // Specifies the path to the user data folder for the parent profile. |
| 434 const char kParentProfile[] = "parent-profile"; | 434 const char kParentProfile[] = "parent-profile"; |
| 435 | 435 |
| 436 // Number of tabs to pin on startup. This is not use if session restore is | |
| 437 // enabled. | |
| 438 const char kPinnedTabCount[] = "pinned-tab-count"; | |
| 439 | |
| 440 // Read previously recorded data from the cache. Only cached data is read. | 436 // Read previously recorded data from the cache. Only cached data is read. |
| 441 // See kRecordMode. | 437 // See kRecordMode. |
| 442 const char kPlaybackMode[] = "playback-mode"; | 438 const char kPlaybackMode[] = "playback-mode"; |
| 443 | 439 |
| 444 // Specifies the plugin data directory, which is where plugins (Gears | 440 // Specifies the plugin data directory, which is where plugins (Gears |
| 445 // specifically) will store its state. | 441 // specifically) will store its state. |
| 446 const char kPluginDataDir[] = "plugin-data-dir"; | 442 const char kPluginDataDir[] = "plugin-data-dir"; |
| 447 | 443 |
| 448 // Specifies a command that should be used to launch the plugin process. Useful | 444 // Specifies a command that should be used to launch the plugin process. Useful |
| 449 // for running the plugin process through purify or quantify. Ex: | 445 // for running the plugin process through purify or quantify. Ex: |
| (...skipping 301 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 751 | 747 |
| 752 // ----------------------------------------------------------------------------- | 748 // ----------------------------------------------------------------------------- |
| 753 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 749 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 754 // | 750 // |
| 755 // You were going to just dump your switches here, weren't you? Instead, | 751 // You were going to just dump your switches here, weren't you? Instead, |
| 756 // please put them in alphabetical order above, or in order inside the | 752 // please put them in alphabetical order above, or in order inside the |
| 757 // appropriate ifdef at the bottom. The order should match the header. | 753 // appropriate ifdef at the bottom. The order should match the header. |
| 758 // ----------------------------------------------------------------------------- | 754 // ----------------------------------------------------------------------------- |
| 759 | 755 |
| 760 } // namespace switches | 756 } // namespace switches |
| OLD | NEW |