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

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

Issue 291093005: Removes --enable-stacked-tab-strip flag (Stacked Tabs) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 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 643 matching lines...) Expand 10 before | Expand all | Expand 10 after
654 const char kEnableSpdy4[] = "enable-spdy4"; 654 const char kEnableSpdy4[] = "enable-spdy4";
655 655
656 // Enables auto correction for misspelled words. 656 // Enables auto correction for misspelled words.
657 const char kEnableSpellingAutoCorrect[] = "enable-spelling-auto-correct"; 657 const char kEnableSpellingAutoCorrect[] = "enable-spelling-auto-correct";
658 658
659 // Enables participation in the field trial for user feedback to spelling 659 // Enables participation in the field trial for user feedback to spelling
660 // service. 660 // service.
661 const char kEnableSpellingFeedbackFieldTrial[] = 661 const char kEnableSpellingFeedbackFieldTrial[] =
662 "enable-spelling-feedback-field-trial"; 662 "enable-spelling-feedback-field-trial";
663 663
664 // Enables the stacked tabstrip.
665 const char kEnableStackedTabStrip[] = "enable-stacked-tab-strip";
666
667 // Enables an experimental hosted app experience. 664 // Enables an experimental hosted app experience.
668 const char kEnableStreamlinedHostedApps[] = "enable-streamlined-hosted-apps"; 665 const char kEnableStreamlinedHostedApps[] = "enable-streamlined-hosted-apps";
669 666
670 // Enables the suggestions service. 667 // Enables the suggestions service.
671 const char kEnableSuggestionsService[] = "enable-suggestions-service"; 668 const char kEnableSuggestionsService[] = "enable-suggestions-service";
672 669
673 // Enables synced notifications. 670 // Enables synced notifications.
674 const char kEnableSyncSyncedNotifications[] = 671 const char kEnableSyncSyncedNotifications[] =
675 "enable-sync-synced-notifications"; 672 "enable-sync-synced-notifications";
676 673
(...skipping 793 matching lines...) Expand 10 before | Expand all | Expand 10 after
1470 1467
1471 // ----------------------------------------------------------------------------- 1468 // -----------------------------------------------------------------------------
1472 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1469 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1473 // 1470 //
1474 // You were going to just dump your switches here, weren't you? Instead, please 1471 // You were going to just dump your switches here, weren't you? Instead, please
1475 // put them in alphabetical order above, or in order inside the appropriate 1472 // put them in alphabetical order above, or in order inside the appropriate
1476 // ifdef at the bottom. The order should match the header. 1473 // ifdef at the bottom. The order should match the header.
1477 // ----------------------------------------------------------------------------- 1474 // -----------------------------------------------------------------------------
1478 1475
1479 } // namespace switches 1476 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698