| 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 375 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 386 // Don't use a proxy server, always make direct connections. Overrides any | 386 // Don't use a proxy server, always make direct connections. Overrides any |
| 387 // other proxy server flags that are passed. | 387 // other proxy server flags that are passed. |
| 388 const char kNoProxyServer[] = "no-proxy-server"; | 388 const char kNoProxyServer[] = "no-proxy-server"; |
| 389 | 389 |
| 390 // Runs the renderer outside the sandbox. | 390 // Runs the renderer outside the sandbox. |
| 391 const char kNoSandbox[] = "no-sandbox"; | 391 const char kNoSandbox[] = "no-sandbox"; |
| 392 | 392 |
| 393 // Number of entries to show in the omnibox popup. | 393 // Number of entries to show in the omnibox popup. |
| 394 const char kOmniBoxPopupCount[] = "omnibox-popup-count"; | 394 const char kOmniBoxPopupCount[] = "omnibox-popup-count"; |
| 395 | 395 |
| 396 // Launch URL in new browser window |
| 397 const char kOpenInNewWindow[] = "open-in-new-window"; |
| 398 |
| 396 // Package an extension to a .crx installable file from a given directory. | 399 // Package an extension to a .crx installable file from a given directory. |
| 397 const char kPackExtension[] = "pack-extension"; | 400 const char kPackExtension[] = "pack-extension"; |
| 398 | 401 |
| 399 // Optional PEM private key is to use in signing packaged .crx. | 402 // Optional PEM private key is to use in signing packaged .crx. |
| 400 const char kPackExtensionKey[] = "pack-extension-key"; | 403 const char kPackExtensionKey[] = "pack-extension-key"; |
| 401 | 404 |
| 402 // Specifies the path to the user data folder for the parent profile. | 405 // Specifies the path to the user data folder for the parent profile. |
| 403 const char kParentProfile[] = "parent-profile"; | 406 const char kParentProfile[] = "parent-profile"; |
| 404 | 407 |
| 405 // Number of tabs to pin on startup. This is not use if session restore is | 408 // Number of tabs to pin on startup. This is not use if session restore is |
| (...skipping 304 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 710 | 713 |
| 711 // ----------------------------------------------------------------------------- | 714 // ----------------------------------------------------------------------------- |
| 712 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 715 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 713 // | 716 // |
| 714 // You were going to just dump your switches here, weren't you? Instead, | 717 // You were going to just dump your switches here, weren't you? Instead, |
| 715 // please put them in alphabetical order above, or in order inside the | 718 // please put them in alphabetical order above, or in order inside the |
| 716 // appropriate ifdef at the bottom. The order should match the header. | 719 // appropriate ifdef at the bottom. The order should match the header. |
| 717 // ----------------------------------------------------------------------------- | 720 // ----------------------------------------------------------------------------- |
| 718 | 721 |
| 719 } // namespace switches | 722 } // namespace switches |
| OLD | NEW |