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

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

Issue 18603006: Bookmark sync promo for Views. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Common layout constants Created 7 years, 5 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 493 matching lines...) Expand 10 before | Expand all | Expand 10 after
504 // browser's cookie jar is pre-filled with GAIA cookies. When the user visits a 504 // browser's cookie jar is pre-filled with GAIA cookies. When the user visits a
505 // GAIA login page, an info bar can help the user login. 505 // GAIA login page, an info bar can help the user login.
506 const char kEnableAutologin[] = "enable-autologin"; 506 const char kEnableAutologin[] = "enable-autologin";
507 507
508 // Enables the benchmarking extensions. 508 // Enables the benchmarking extensions.
509 const char kEnableBenchmarking[] = "enable-benchmarking"; 509 const char kEnableBenchmarking[] = "enable-benchmarking";
510 510
511 // Enables (experimental) more strict popup blocking. 511 // Enables (experimental) more strict popup blocking.
512 const char kEnableBetterPopupBlocking[] = "enable-better-popup-blocking"; 512 const char kEnableBetterPopupBlocking[] = "enable-better-popup-blocking";
513 513
514 // Enables a sync promo that is displayed in the bookmark bubble.
515 const char kEnableBookmarkSyncPromo[] = "enable-bookmark-sync-promo";
516
514 // This applies only when the process type is "service". Enables the Cloud 517 // This applies only when the process type is "service". Enables the Cloud
515 // Print Proxy component within the service process. 518 // Print Proxy component within the service process.
516 const char kEnableCloudPrintProxy[] = "enable-cloud-print-proxy"; 519 const char kEnableCloudPrintProxy[] = "enable-cloud-print-proxy";
517 520
518 // Enables fetching and storing cloud policy for components. This currently 521 // Enables fetching and storing cloud policy for components. This currently
519 // supports policy for extensions on Chrome OS. 522 // supports policy for extensions on Chrome OS.
520 const char kEnableComponentCloudPolicy[] = "enable-component-cloud-policy"; 523 const char kEnableComponentCloudPolicy[] = "enable-component-cloud-policy";
521 524
522 // Enables fetching the user's contacts from Google and showing them in the 525 // Enables fetching the user's contacts from Google and showing them in the
523 // Chrome OS apps list. 526 // Chrome OS apps list.
(...skipping 1050 matching lines...) Expand 10 before | Expand all | Expand 10 after
1574 1577
1575 // ----------------------------------------------------------------------------- 1578 // -----------------------------------------------------------------------------
1576 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1579 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1577 // 1580 //
1578 // You were going to just dump your switches here, weren't you? Instead, please 1581 // You were going to just dump your switches here, weren't you? Instead, please
1579 // put them in alphabetical order above, or in order inside the appropriate 1582 // put them in alphabetical order above, or in order inside the appropriate
1580 // ifdef at the bottom. The order should match the header. 1583 // ifdef at the bottom. The order should match the header.
1581 // ----------------------------------------------------------------------------- 1584 // -----------------------------------------------------------------------------
1582 1585
1583 } // namespace switches 1586 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698