| 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 | 9 |
| 10 namespace switches { | 10 namespace switches { |
| (...skipping 1176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1187 // Specifies the user data directory, which is where the browser will look for | 1187 // Specifies the user data directory, which is where the browser will look for |
| 1188 // all of its state. | 1188 // all of its state. |
| 1189 const char kUserDataDir[] = "user-data-dir"; | 1189 const char kUserDataDir[] = "user-data-dir"; |
| 1190 | 1190 |
| 1191 // Examines a .crx for validity and prints the result. | 1191 // Examines a .crx for validity and prints the result. |
| 1192 const char kValidateCrx[] = "validate-crx"; | 1192 const char kValidateCrx[] = "validate-crx"; |
| 1193 | 1193 |
| 1194 // Uses experimental simple cache backend if possible. | 1194 // Uses experimental simple cache backend if possible. |
| 1195 const char kUseSimpleCacheBackend[] = "use-simple-cache-backend"; | 1195 const char kUseSimpleCacheBackend[] = "use-simple-cache-backend"; |
| 1196 | 1196 |
| 1197 // Enables using an in-process Mojo service for the v8 proxy resolver. |
| 1198 const char kV8PacMojoInProcess[] = "v8-pac-mojo-in-process"; |
| 1199 |
| 1197 // Specifies a custom URL for the server which reports variation data to the | 1200 // Specifies a custom URL for the server which reports variation data to the |
| 1198 // client. Specifying this switch enables the Variations service on | 1201 // client. Specifying this switch enables the Variations service on |
| 1199 // unofficial builds. See variations_service.cc. | 1202 // unofficial builds. See variations_service.cc. |
| 1200 const char kVariationsServerURL[] = "variations-server-url"; | 1203 const char kVariationsServerURL[] = "variations-server-url"; |
| 1201 | 1204 |
| 1202 // Prints version information and quits. | 1205 // Prints version information and quits. |
| 1203 const char kVersion[] = "version"; | 1206 const char kVersion[] = "version"; |
| 1204 | 1207 |
| 1205 // Specify the initial window position: --window-position=x,y | 1208 // Specify the initial window position: --window-position=x,y |
| 1206 const char kWindowPosition[] = "window-position"; | 1209 const char kWindowPosition[] = "window-position"; |
| (...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1396 | 1399 |
| 1397 // ----------------------------------------------------------------------------- | 1400 // ----------------------------------------------------------------------------- |
| 1398 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1401 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1399 // | 1402 // |
| 1400 // You were going to just dump your switches here, weren't you? Instead, please | 1403 // You were going to just dump your switches here, weren't you? Instead, please |
| 1401 // put them in alphabetical order above, or in order inside the appropriate | 1404 // put them in alphabetical order above, or in order inside the appropriate |
| 1402 // ifdef at the bottom. The order should match the header. | 1405 // ifdef at the bottom. The order should match the header. |
| 1403 // ----------------------------------------------------------------------------- | 1406 // ----------------------------------------------------------------------------- |
| 1404 | 1407 |
| 1405 } // namespace switches | 1408 } // namespace switches |
| OLD | NEW |