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 852 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
863 // A string used to override the default user agent with a custom one. | 863 // A string used to override the default user agent with a custom one. |
864 const char kUserAgent[] = "user-agent"; | 864 const char kUserAgent[] = "user-agent"; |
865 | 865 |
866 // Specifies the user data directory, which is where the browser will look for | 866 // Specifies the user data directory, which is where the browser will look for |
867 // all of its state. | 867 // all of its state. |
868 const char kUserDataDir[] = "user-data-dir"; | 868 const char kUserDataDir[] = "user-data-dir"; |
869 | 869 |
870 // Uses experimental simple cache backend if possible. | 870 // Uses experimental simple cache backend if possible. |
871 const char kUseSimpleCacheBackend[] = "use-simple-cache-backend"; | 871 const char kUseSimpleCacheBackend[] = "use-simple-cache-backend"; |
872 | 872 |
873 // Enables using an in-process Mojo service for the v8 proxy resolver. | |
874 const char kV8PacMojoInProcess[] = "v8-pac-mojo-in-process"; | |
875 | |
876 // Enables using an out-of-process Mojo service for the v8 proxy resolver. | 873 // Enables using an out-of-process Mojo service for the v8 proxy resolver. |
877 const char kV8PacMojoOutOfProcess[] = "v8-pac-mojo-out-of-process"; | 874 const char kV8PacMojoOutOfProcess[] = "v8-pac-mojo-out-of-process"; |
878 | 875 |
879 // Examines a .crx for validity and prints the result. | 876 // Examines a .crx for validity and prints the result. |
880 const char kValidateCrx[] = "validate-crx"; | 877 const char kValidateCrx[] = "validate-crx"; |
881 | 878 |
882 // Prints version information and quits. | 879 // Prints version information and quits. |
883 const char kVersion[] = "version"; | 880 const char kVersion[] = "version"; |
884 | 881 |
885 // Specify the initial window position: --window-position=x,y | 882 // Specify the initial window position: --window-position=x,y |
(...skipping 343 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1229 | 1226 |
1230 // ----------------------------------------------------------------------------- | 1227 // ----------------------------------------------------------------------------- |
1231 // DO NOT ADD YOUR VERY NICE FLAGS TO THE BOTTOM OF THIS FILE. | 1228 // DO NOT ADD YOUR VERY NICE FLAGS TO THE BOTTOM OF THIS FILE. |
1232 // | 1229 // |
1233 // You were going to just dump your switches here, weren't you? Instead, please | 1230 // You were going to just dump your switches here, weren't you? Instead, please |
1234 // put them in alphabetical order above, or in order inside the appropriate | 1231 // put them in alphabetical order above, or in order inside the appropriate |
1235 // ifdef at the bottom. The order should match the header. | 1232 // ifdef at the bottom. The order should match the header. |
1236 // ----------------------------------------------------------------------------- | 1233 // ----------------------------------------------------------------------------- |
1237 | 1234 |
1238 } // namespace switches | 1235 } // namespace switches |
OLD | NEW |