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

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

Issue 10382216: Remove browser-actions-for-all flag and replace funcionality with action-box. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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 457 matching lines...) Expand 10 before | Expand all | Expand 10 after
468 const char kEnableAutofillFeedback[] = "enable-autofill-feedback"; 468 const char kEnableAutofillFeedback[] = "enable-autofill-feedback";
469 469
470 // Enables the pre- and auto-login features. When a user signs in to sync, the 470 // Enables the pre- and auto-login features. When a user signs in to sync, the
471 // browser's cookie jar is pre-filled with GAIA cookies. When the user visits a 471 // browser's cookie jar is pre-filled with GAIA cookies. When the user visits a
472 // GAIA login page, an info bar can help the user login. 472 // GAIA login page, an info bar can help the user login.
473 const char kEnableAutologin[] = "enable-autologin"; 473 const char kEnableAutologin[] = "enable-autologin";
474 474
475 // Enables the benchmarking extensions. 475 // Enables the benchmarking extensions.
476 const char kEnableBenchmarking[] = "enable-benchmarking"; 476 const char kEnableBenchmarking[] = "enable-benchmarking";
477 477
478 // Enables making all extensions have a browser action.
479 const char kEnableBrowserActionsForAll[] = "enable-browser-actions-for-all";
480
481 // Enables the bundled PPAPI version of Flash. 478 // Enables the bundled PPAPI version of Flash.
482 const char kEnableBundledPpapiFlash[] = "enable-bundled-ppapi-flash"; 479 const char kEnableBundledPpapiFlash[] = "enable-bundled-ppapi-flash";
483 480
484 // Enables the new ClientOAuth signin flow for connecting a profile a Google 481 // Enables the new ClientOAuth signin flow for connecting a profile a Google
485 // account. When disabled, Chrome will use the ClientLogin flow instead. 482 // account. When disabled, Chrome will use the ClientLogin flow instead.
486 const char kEnableClientOAuthSignin[] = "enable-client-oauth-signin"; 483 const char kEnableClientOAuthSignin[] = "enable-client-oauth-signin";
487 484
488 // Enables Chrome To Mobile. 485 // Enables Chrome To Mobile.
489 // This switch is not currently respected; use the disable switch instead. 486 // This switch is not currently respected; use the disable switch instead.
490 const char kEnableChromeToMobile[] = "enable-chrome-to-mobile"; 487 const char kEnableChromeToMobile[] = "enable-chrome-to-mobile";
(...skipping 942 matching lines...) Expand 10 before | Expand all | Expand 10 after
1433 1430
1434 // ----------------------------------------------------------------------------- 1431 // -----------------------------------------------------------------------------
1435 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1432 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1436 // 1433 //
1437 // You were going to just dump your switches here, weren't you? Instead, please 1434 // You were going to just dump your switches here, weren't you? Instead, please
1438 // put them in alphabetical order above, or in order inside the appropriate 1435 // put them in alphabetical order above, or in order inside the appropriate
1439 // ifdef at the bottom. The order should match the header. 1436 // ifdef at the bottom. The order should match the header.
1440 // ----------------------------------------------------------------------------- 1437 // -----------------------------------------------------------------------------
1441 1438
1442 } // namespace switches 1439 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698