| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 #include "build/build_config.h" | 9 #include "build/build_config.h" |
| 10 #include "ppapi/features/features.h" | 10 #include "ppapi/features/features.h" |
| (...skipping 800 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 811 // to the PAC scripts. | 811 // to the PAC scripts. |
| 812 const char kUnsafePacUrl[] = "unsafe-pac-url"; | 812 const char kUnsafePacUrl[] = "unsafe-pac-url"; |
| 813 | 813 |
| 814 // A string used to override the default user agent with a custom one. | 814 // A string used to override the default user agent with a custom one. |
| 815 const char kUserAgent[] = "user-agent"; | 815 const char kUserAgent[] = "user-agent"; |
| 816 | 816 |
| 817 // Specifies the user data directory, which is where the browser will look for | 817 // Specifies the user data directory, which is where the browser will look for |
| 818 // all of its state. | 818 // all of its state. |
| 819 const char kUserDataDir[] = "user-data-dir"; | 819 const char kUserDataDir[] = "user-data-dir"; |
| 820 | 820 |
| 821 // Experimental. Shows a dialog asking the user to try chrome. This flag is to |
| 822 // be used only by the upgrade process. |
| 823 const char kUserExperimentUx[] = "user-experiment-ux"; |
| 824 |
| 821 // Uses experimental simple cache backend if possible. | 825 // Uses experimental simple cache backend if possible. |
| 822 const char kUseSimpleCacheBackend[] = "use-simple-cache-backend"; | 826 const char kUseSimpleCacheBackend[] = "use-simple-cache-backend"; |
| 823 | 827 |
| 824 // Examines a .crx for validity and prints the result. | 828 // Examines a .crx for validity and prints the result. |
| 825 const char kValidateCrx[] = "validate-crx"; | 829 const char kValidateCrx[] = "validate-crx"; |
| 826 | 830 |
| 827 // Prints version information and quits. | 831 // Prints version information and quits. |
| 828 const char kVersion[] = "version"; | 832 const char kVersion[] = "version"; |
| 829 | 833 |
| 830 // Specify the initial window position: --window-position=x,y | 834 // Specify the initial window position: --window-position=x,y |
| (...skipping 347 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1178 | 1182 |
| 1179 // ----------------------------------------------------------------------------- | 1183 // ----------------------------------------------------------------------------- |
| 1180 // DO NOT ADD YOUR VERY NICE FLAGS TO THE BOTTOM OF THIS FILE. | 1184 // DO NOT ADD YOUR VERY NICE FLAGS TO THE BOTTOM OF THIS FILE. |
| 1181 // | 1185 // |
| 1182 // You were going to just dump your switches here, weren't you? Instead, please | 1186 // You were going to just dump your switches here, weren't you? Instead, please |
| 1183 // put them in alphabetical order above, or in order inside the appropriate | 1187 // put them in alphabetical order above, or in order inside the appropriate |
| 1184 // ifdef at the bottom. The order should match the header. | 1188 // ifdef at the bottom. The order should match the header. |
| 1185 // ----------------------------------------------------------------------------- | 1189 // ----------------------------------------------------------------------------- |
| 1186 | 1190 |
| 1187 } // namespace switches | 1191 } // namespace switches |
| OLD | NEW |