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 763 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
774 // other proxy server flags that are passed. | 774 // other proxy server flags that are passed. |
775 const char kNoProxyServer[] = "no-proxy-server"; | 775 const char kNoProxyServer[] = "no-proxy-server"; |
776 | 776 |
777 // Runs the renderer outside the sandbox. | 777 // Runs the renderer outside the sandbox. |
778 const char kNoSandbox[] = "no-sandbox"; | 778 const char kNoSandbox[] = "no-sandbox"; |
779 | 779 |
780 // Does not automatically open a browser window on startup (used when launching | 780 // Does not automatically open a browser window on startup (used when launching |
781 // Chrome for the purpose of hosting background apps). | 781 // Chrome for the purpose of hosting background apps). |
782 const char kNoStartupWindow[] = "no-startup-window"; | 782 const char kNoStartupWindow[] = "no-startup-window"; |
783 | 783 |
| 784 // Show a desktop notification that the cloud print token has expired and |
| 785 // that user needs to re-authenticate. |
| 786 const char kNotifyCloudPrintTokenExpired[] = "notify-cp-token-expired"; |
| 787 |
784 // Don't use TopSites; use old ThumbnailDatabase code instead. | 788 // Don't use TopSites; use old ThumbnailDatabase code instead. |
785 const char kNoTopSites[] = "no-top-sites"; | 789 const char kNoTopSites[] = "no-top-sites"; |
786 | 790 |
787 // Specifies the maximum number of threads to use for running the Proxy | 791 // Specifies the maximum number of threads to use for running the Proxy |
788 // Autoconfig (PAC) script. | 792 // Autoconfig (PAC) script. |
789 const char kNumPacThreads[] = "num-pac-threads"; | 793 const char kNumPacThreads[] = "num-pac-threads"; |
790 | 794 |
791 // Launch URL in new browser window. | 795 // Launch URL in new browser window. |
792 const char kOpenInNewWindow[] = "new-window"; | 796 const char kOpenInNewWindow[] = "new-window"; |
793 | 797 |
(...skipping 466 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1260 | 1264 |
1261 // ----------------------------------------------------------------------------- | 1265 // ----------------------------------------------------------------------------- |
1262 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1266 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1263 // | 1267 // |
1264 // You were going to just dump your switches here, weren't you? Instead, | 1268 // 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 | 1269 // please put them in alphabetical order above, or in order inside the |
1266 // appropriate ifdef at the bottom. The order should match the header. | 1270 // appropriate ifdef at the bottom. The order should match the header. |
1267 // ----------------------------------------------------------------------------- | 1271 // ----------------------------------------------------------------------------- |
1268 | 1272 |
1269 } // namespace switches | 1273 } // namespace switches |
OLD | NEW |