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 557 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
568 // Don't send HTTP-Referer headers. | 568 // Don't send HTTP-Referer headers. |
569 const char kNoReferrers[] = "no-referrers"; | 569 const char kNoReferrers[] = "no-referrers"; |
570 | 570 |
571 // Don't use a proxy server, always make direct connections. Overrides any | 571 // Don't use a proxy server, always make direct connections. Overrides any |
572 // other proxy server flags that are passed. | 572 // other proxy server flags that are passed. |
573 const char kNoProxyServer[] = "no-proxy-server"; | 573 const char kNoProxyServer[] = "no-proxy-server"; |
574 | 574 |
575 // Runs the renderer outside the sandbox. | 575 // Runs the renderer outside the sandbox. |
576 const char kNoSandbox[] = "no-sandbox"; | 576 const char kNoSandbox[] = "no-sandbox"; |
577 | 577 |
578 // Number of entries to show in the omnibox popup. | |
579 const char kOmniBoxPopupCount[] = "omnibox-popup-count"; | |
580 | |
581 // Launch URL in new browser window. | 578 // Launch URL in new browser window. |
582 const char kOpenInNewWindow[] = "new-window"; | 579 const char kOpenInNewWindow[] = "new-window"; |
583 | 580 |
584 // Package an extension to a .crx installable file from a given directory. | 581 // Package an extension to a .crx installable file from a given directory. |
585 const char kPackExtension[] = "pack-extension"; | 582 const char kPackExtension[] = "pack-extension"; |
586 | 583 |
587 // Optional PEM private key is to use in signing packaged .crx. | 584 // Optional PEM private key is to use in signing packaged .crx. |
588 const char kPackExtensionKey[] = "pack-extension-key"; | 585 const char kPackExtensionKey[] = "pack-extension-key"; |
589 | 586 |
590 // Specifies the path to the user data folder for the parent profile. | 587 // Specifies the path to the user data folder for the parent profile. |
(...skipping 373 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
964 | 961 |
965 // ----------------------------------------------------------------------------- | 962 // ----------------------------------------------------------------------------- |
966 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 963 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
967 // | 964 // |
968 // You were going to just dump your switches here, weren't you? Instead, | 965 // You were going to just dump your switches here, weren't you? Instead, |
969 // please put them in alphabetical order above, or in order inside the | 966 // please put them in alphabetical order above, or in order inside the |
970 // appropriate ifdef at the bottom. The order should match the header. | 967 // appropriate ifdef at the bottom. The order should match the header. |
971 // ----------------------------------------------------------------------------- | 968 // ----------------------------------------------------------------------------- |
972 | 969 |
973 } // namespace switches | 970 } // namespace switches |
OLD | NEW |