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

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

Issue 10266015: Add the --disable-off-store-extension-install switch. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: cleanup Created 8 years, 7 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 | Annotate | Revision Log
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 317 matching lines...) Expand 10 before | Expand all | Expand 10 after
328 // is needed for a domain which shares an IP with an existing connection, 328 // is needed for a domain which shares an IP with an existing connection,
329 // attempt to use the existing connection. 329 // attempt to use the existing connection.
330 const char kDisableIPPooling[] = "disable-ip-pooling"; 330 const char kDisableIPPooling[] = "disable-ip-pooling";
331 331
332 // Avoid doing expensive animations upon login. 332 // Avoid doing expensive animations upon login.
333 const char kDisableLoginAnimations[] = "disable-login-animations"; 333 const char kDisableLoginAnimations[] = "disable-login-animations";
334 334
335 // Disables the menu on the NTP for accessing sessions from other devices. 335 // Disables the menu on the NTP for accessing sessions from other devices.
336 const char kDisableNTPOtherSessionsMenu[] = "disable-ntp-other-sessions-menu"; 336 const char kDisableNTPOtherSessionsMenu[] = "disable-ntp-other-sessions-menu";
337 337
338 // Enables a new off-store extension installation UX.
benjhayden 2012/04/30 19:26:12 Did you mean "Disables"? If not, can you either re
Aaron Boodman 2012/04/30 20:24:28 Done.
339 const char kDisableOffStoreExtensionInstall[] =
340 "disable-off-store-extension-install";
341
338 // Disable speculative TCP/IP preconnection. 342 // Disable speculative TCP/IP preconnection.
339 const char kDisablePreconnect[] = "disable-preconnect"; 343 const char kDisablePreconnect[] = "disable-preconnect";
340 344
341 // Normally when the user attempts to navigate to a page that was the result of 345 // Normally when the user attempts to navigate to a page that was the result of
342 // a post we prompt to make sure they want to. This switch may be used to 346 // a post we prompt to make sure they want to. This switch may be used to
343 // disable that check. This switch is used during automated testing. 347 // disable that check. This switch is used during automated testing.
344 const char kDisablePromptOnRepost[] = "disable-prompt-on-repost"; 348 const char kDisablePromptOnRepost[] = "disable-prompt-on-repost";
345 349
346 // Prevents the URLs of BackgroundContents from being remembered and 350 // Prevents the URLs of BackgroundContents from being remembered and
347 // re-launched when the browser restarts. 351 // re-launched when the browser restarts.
(...skipping 1068 matching lines...) Expand 10 before | Expand all | Expand 10 after
1416 1420
1417 // ----------------------------------------------------------------------------- 1421 // -----------------------------------------------------------------------------
1418 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1422 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1419 // 1423 //
1420 // You were going to just dump your switches here, weren't you? Instead, please 1424 // You were going to just dump your switches here, weren't you? Instead, please
1421 // put them in alphabetical order above, or in order inside the appropriate 1425 // put them in alphabetical order above, or in order inside the appropriate
1422 // ifdef at the bottom. The order should match the header. 1426 // ifdef at the bottom. The order should match the header.
1423 // ----------------------------------------------------------------------------- 1427 // -----------------------------------------------------------------------------
1424 1428
1425 } // namespace switches 1429 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698