Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(31)

Side by Side Diff: chrome/common/chrome_switches.cc

Issue 910343003: Create an in-process v8 proxy resolver using Mojo. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@v8-pac-complete-patch
Patch Set: Address review comments. Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 1154 matching lines...) Expand 10 before | Expand all | Expand 10 after
1165 // Specifies the user data directory, which is where the browser will look for 1165 // Specifies the user data directory, which is where the browser will look for
1166 // all of its state. 1166 // all of its state.
1167 const char kUserDataDir[] = "user-data-dir"; 1167 const char kUserDataDir[] = "user-data-dir";
1168 1168
1169 // Examines a .crx for validity and prints the result. 1169 // Examines a .crx for validity and prints the result.
1170 const char kValidateCrx[] = "validate-crx"; 1170 const char kValidateCrx[] = "validate-crx";
1171 1171
1172 // Uses experimental simple cache backend if possible. 1172 // Uses experimental simple cache backend if possible.
1173 const char kUseSimpleCacheBackend[] = "use-simple-cache-backend"; 1173 const char kUseSimpleCacheBackend[] = "use-simple-cache-backend";
1174 1174
1175 // Enables using an in-process Mojo service for the v8 proxy resolver.
1176 const char kV8PacMojoInProcess[] = "v8-pac-mojo-in-process";
1177
1175 // Specifies a custom URL for the server which reports variation data to the 1178 // Specifies a custom URL for the server which reports variation data to the
1176 // client. Specifying this switch enables the Variations service on 1179 // client. Specifying this switch enables the Variations service on
1177 // unofficial builds. See variations_service.cc. 1180 // unofficial builds. See variations_service.cc.
1178 const char kVariationsServerURL[] = "variations-server-url"; 1181 const char kVariationsServerURL[] = "variations-server-url";
1179 1182
1180 // Prints version information and quits. 1183 // Prints version information and quits.
1181 const char kVersion[] = "version"; 1184 const char kVersion[] = "version";
1182 1185
1183 // Specify the initial window position: --window-position=x,y 1186 // Specify the initial window position: --window-position=x,y
1184 const char kWindowPosition[] = "window-position"; 1187 const char kWindowPosition[] = "window-position";
(...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after
1374 1377
1375 // ----------------------------------------------------------------------------- 1378 // -----------------------------------------------------------------------------
1376 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1379 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1377 // 1380 //
1378 // You were going to just dump your switches here, weren't you? Instead, please 1381 // You were going to just dump your switches here, weren't you? Instead, please
1379 // put them in alphabetical order above, or in order inside the appropriate 1382 // put them in alphabetical order above, or in order inside the appropriate
1380 // ifdef at the bottom. The order should match the header. 1383 // ifdef at the bottom. The order should match the header.
1381 // ----------------------------------------------------------------------------- 1384 // -----------------------------------------------------------------------------
1382 1385
1383 } // namespace switches 1386 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698