| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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 381 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 392 // Don't use a proxy server, always make direct connections. Overrides any | 392 // Don't use a proxy server, always make direct connections. Overrides any |
| 393 // other proxy server flags that are passed. | 393 // other proxy server flags that are passed. |
| 394 const char kNoProxyServer[] = "no-proxy-server"; | 394 const char kNoProxyServer[] = "no-proxy-server"; |
| 395 | 395 |
| 396 // Runs the renderer outside the sandbox. | 396 // Runs the renderer outside the sandbox. |
| 397 const char kNoSandbox[] = "no-sandbox"; | 397 const char kNoSandbox[] = "no-sandbox"; |
| 398 | 398 |
| 399 // Number of entries to show in the omnibox popup. | 399 // Number of entries to show in the omnibox popup. |
| 400 const char kOmniBoxPopupCount[] = "omnibox-popup-count"; | 400 const char kOmniBoxPopupCount[] = "omnibox-popup-count"; |
| 401 | 401 |
| 402 // Launch URL in new browser window. |
| 403 const char kOpenInNewWindow[] = "new-window"; |
| 404 |
| 402 // Package an extension to a .crx installable file from a given directory. | 405 // Package an extension to a .crx installable file from a given directory. |
| 403 const char kPackExtension[] = "pack-extension"; | 406 const char kPackExtension[] = "pack-extension"; |
| 404 | 407 |
| 405 // Optional PEM private key is to use in signing packaged .crx. | 408 // Optional PEM private key is to use in signing packaged .crx. |
| 406 const char kPackExtensionKey[] = "pack-extension-key"; | 409 const char kPackExtensionKey[] = "pack-extension-key"; |
| 407 | 410 |
| 408 // Specifies the path to the user data folder for the parent profile. | 411 // Specifies the path to the user data folder for the parent profile. |
| 409 const char kParentProfile[] = "parent-profile"; | 412 const char kParentProfile[] = "parent-profile"; |
| 410 | 413 |
| 411 // Number of tabs to pin on startup. This is not use if session restore is | 414 // Number of tabs to pin on startup. This is not use if session restore is |
| (...skipping 307 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 719 | 722 |
| 720 // ----------------------------------------------------------------------------- | 723 // ----------------------------------------------------------------------------- |
| 721 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 724 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 722 // | 725 // |
| 723 // You were going to just dump your switches here, weren't you? Instead, | 726 // You were going to just dump your switches here, weren't you? Instead, |
| 724 // please put them in alphabetical order above, or in order inside the | 727 // please put them in alphabetical order above, or in order inside the |
| 725 // appropriate ifdef at the bottom. The order should match the header. | 728 // appropriate ifdef at the bottom. The order should match the header. |
| 726 // ----------------------------------------------------------------------------- | 729 // ----------------------------------------------------------------------------- |
| 727 | 730 |
| 728 } // namespace switches | 731 } // namespace switches |
| OLD | NEW |