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

Side by Side Diff: chrome/browser/about_flags.cc

Issue 291093005: Removes --enable-stacked-tab-strip flag (Stacked Tabs) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Removes --enable-stacked-tab-strip flag (minor refactoring) 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/browser/about_flags.h" 5 #include "chrome/browser/about_flags.h"
6 6
7 #include <iterator> 7 #include <iterator>
8 #include <map> 8 #include <map>
9 #include <set> 9 #include <set>
10 #include <utility> 10 #include <utility>
(...skipping 921 matching lines...) Expand 10 before | Expand all | Expand 10 after
932 SINGLE_VALUE_TYPE(switches::kEnableDownloadResumption) 932 SINGLE_VALUE_TYPE(switches::kEnableDownloadResumption)
933 }, 933 },
934 { 934 {
935 "allow-nacl-socket-api", 935 "allow-nacl-socket-api",
936 IDS_FLAGS_ALLOW_NACL_SOCKET_API_NAME, 936 IDS_FLAGS_ALLOW_NACL_SOCKET_API_NAME,
937 IDS_FLAGS_ALLOW_NACL_SOCKET_API_DESCRIPTION, 937 IDS_FLAGS_ALLOW_NACL_SOCKET_API_DESCRIPTION,
938 kOsDesktop, 938 kOsDesktop,
939 SINGLE_VALUE_TYPE_AND_VALUE(switches::kAllowNaClSocketAPI, "*") 939 SINGLE_VALUE_TYPE_AND_VALUE(switches::kAllowNaClSocketAPI, "*")
940 }, 940 },
941 { 941 {
942 "stacked-tab-strip",
943 IDS_FLAGS_STACKED_TAB_STRIP_NAME,
944 IDS_FLAGS_STACKED_TAB_STRIP_DESCRIPTION,
945 kOsWin,
946 SINGLE_VALUE_TYPE(switches::kEnableStackedTabStrip)
947 },
948 {
949 "force-device-scale-factor", 942 "force-device-scale-factor",
950 IDS_FLAGS_FORCE_HIGH_DPI_NAME, 943 IDS_FLAGS_FORCE_HIGH_DPI_NAME,
951 IDS_FLAGS_FORCE_HIGH_DPI_DESCRIPTION, 944 IDS_FLAGS_FORCE_HIGH_DPI_DESCRIPTION,
952 kOsCrOS, 945 kOsCrOS,
953 SINGLE_VALUE_TYPE_AND_VALUE(switches::kForceDeviceScaleFactor, "2") 946 SINGLE_VALUE_TYPE_AND_VALUE(switches::kForceDeviceScaleFactor, "2")
954 }, 947 },
955 #if defined(OS_CHROMEOS) 948 #if defined(OS_CHROMEOS)
956 { 949 {
957 "allow-touchpad-three-finger-click", 950 "allow-touchpad-three-finger-click",
958 IDS_FLAGS_ALLOW_TOUCHPAD_THREE_FINGER_CLICK_NAME, 951 IDS_FLAGS_ALLOW_TOUCHPAD_THREE_FINGER_CLICK_NAME,
(...skipping 1438 matching lines...) Expand 10 before | Expand all | Expand 10 after
2397 } 2390 }
2398 2391
2399 const Experiment* GetExperiments(size_t* count) { 2392 const Experiment* GetExperiments(size_t* count) {
2400 *count = num_experiments; 2393 *count = num_experiments;
2401 return experiments; 2394 return experiments;
2402 } 2395 }
2403 2396
2404 } // namespace testing 2397 } // namespace testing
2405 2398
2406 } // namespace about_flags 2399 } // namespace about_flags
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698