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

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

Issue 10117016: Implementation for switching between recently used tabs using ctrl tilde or quoteleft. Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Fixed review comments. Created 8 years, 6 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 585 matching lines...) Expand 10 before | Expand all | Expand 10 after
596 // use "--enable-sdch=0" as command line argument. SDCH is currently only 596 // use "--enable-sdch=0" as command line argument. SDCH is currently only
597 // supported server-side for searches on google.com. 597 // supported server-side for searches on google.com.
598 const char kEnableSdch[] = "enable-sdch"; 598 const char kEnableSdch[] = "enable-sdch";
599 599
600 // Enable SPDY/3. This is a temporary testing flag. 600 // Enable SPDY/3. This is a temporary testing flag.
601 const char kEnableSpdy3[] = "enable-spdy3"; 601 const char kEnableSpdy3[] = "enable-spdy3";
602 602
603 // Enables the stacked tabstrip. 603 // Enables the stacked tabstrip.
604 const char kEnableStackedTabStrip[] = "enable-stacked-tab-strip"; 604 const char kEnableStackedTabStrip[] = "enable-stacked-tab-strip";
605 605
606 // Enables switching between most recently used tabs using ctrl+tilde
607 const char kEnableTabMRUSwitch[] = "enable-tab-mru-switch";
608
606 // Enables experimental suggestions pane in New Tab page. 609 // Enables experimental suggestions pane in New Tab page.
607 const char kEnableSuggestionsTabPage[] = "enable-suggestions-ntp"; 610 const char kEnableSuggestionsTabPage[] = "enable-suggestions-ntp";
608 611
609 // Enables the new Sync Signin flow, i.e., chrome:signin for all signins. 612 // Enables the new Sync Signin flow, i.e., chrome:signin for all signins.
610 const char kEnableSyncSignin[] = "enable-sync-signin"; 613 const char kEnableSyncSignin[] = "enable-sync-signin";
611 614
612 // Enables syncing browser sessions. 615 // Enables syncing browser sessions.
613 const char kEnableSyncTabs[] = "enable-sync-tabs"; 616 const char kEnableSyncTabs[] = "enable-sync-tabs";
614 617
615 // Disables syncing browser sessions. Will override kEnableSyncTabs. 618 // Disables syncing browser sessions. Will override kEnableSyncTabs.
(...skipping 824 matching lines...) Expand 10 before | Expand all | Expand 10 after
1440 1443
1441 // ----------------------------------------------------------------------------- 1444 // -----------------------------------------------------------------------------
1442 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1445 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1443 // 1446 //
1444 // You were going to just dump your switches here, weren't you? Instead, please 1447 // You were going to just dump your switches here, weren't you? Instead, please
1445 // put them in alphabetical order above, or in order inside the appropriate 1448 // put them in alphabetical order above, or in order inside the appropriate
1446 // ifdef at the bottom. The order should match the header. 1449 // ifdef at the bottom. The order should match the header.
1447 // ----------------------------------------------------------------------------- 1450 // -----------------------------------------------------------------------------
1448 1451
1449 } // namespace switches 1452 } // namespace switches
OLDNEW
« chrome/browser/ui/tabs/tab_mru_list_manager_unittest.cc ('K') | « chrome/common/chrome_switches.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698