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

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

Issue 229453005: Shelf Cleanup AlternateShelfLayout P1 Attempt 3 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 6 years, 8 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
« no previous file with comments | « ash/wm/app_list_controller.cc ('k') | chrome/browser/ui/apps/chrome_app_window_delegate.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 <algorithm> 7 #include <algorithm>
8 #include <iterator> 8 #include <iterator>
9 #include <map> 9 #include <map>
10 #include <set> 10 #include <set>
(...skipping 928 matching lines...) Expand 10 before | Expand all | Expand 10 after
939 }, 939 },
940 { 940 {
941 "disable-touch-adjustment", 941 "disable-touch-adjustment",
942 IDS_DISABLE_TOUCH_ADJUSTMENT_NAME, 942 IDS_DISABLE_TOUCH_ADJUSTMENT_NAME,
943 IDS_DISABLE_TOUCH_ADJUSTMENT_DESCRIPTION, 943 IDS_DISABLE_TOUCH_ADJUSTMENT_DESCRIPTION,
944 kOsWin | kOsLinux | kOsCrOS, 944 kOsWin | kOsLinux | kOsCrOS,
945 SINGLE_VALUE_TYPE(switches::kDisableTouchAdjustment) 945 SINGLE_VALUE_TYPE(switches::kDisableTouchAdjustment)
946 }, 946 },
947 #if defined(OS_CHROMEOS) 947 #if defined(OS_CHROMEOS)
948 { 948 {
949 "ash-use-alternate-shelf",
950 IDS_FLAGS_ALTERNATE_SHELF_LAYOUT_NAME,
951 IDS_FLAGS_ALTERNATE_SHELF_LAYOUT_DESCRIPTION,
952 kOsCrOS,
953 ENABLE_DISABLE_VALUE_TYPE(ash::switches::kAshUseAlternateShelfLayout,
954 ash::switches::kAshDisableAlternateShelfLayout)
955 },
956 {
957 "ash-disable-docked-windows", 949 "ash-disable-docked-windows",
958 IDS_FLAGS_DOCKED_WINDOWS_NAME, 950 IDS_FLAGS_DOCKED_WINDOWS_NAME,
959 IDS_FLAGS_DOCKED_WINDOWS_DESCRIPTION, 951 IDS_FLAGS_DOCKED_WINDOWS_DESCRIPTION,
960 kOsCrOS, 952 kOsCrOS,
961 SINGLE_VALUE_TYPE(ash::switches::kAshDisableDockedWindows) 953 SINGLE_VALUE_TYPE(ash::switches::kAshDisableDockedWindows)
962 }, 954 },
963 { 955 {
964 "network-portal-notification", 956 "network-portal-notification",
965 IDS_FLAGS_NETWORK_PORTAL_NOTIFICATION_NAME, 957 IDS_FLAGS_NETWORK_PORTAL_NOTIFICATION_NAME,
966 IDS_FLAGS_NETWORK_PORTAL_NOTIFICATION_DESCRIPTION, 958 IDS_FLAGS_NETWORK_PORTAL_NOTIFICATION_DESCRIPTION,
(...skipping 1359 matching lines...) Expand 10 before | Expand all | Expand 10 after
2326 } 2318 }
2327 2319
2328 const Experiment* GetExperiments(size_t* count) { 2320 const Experiment* GetExperiments(size_t* count) {
2329 *count = num_experiments; 2321 *count = num_experiments;
2330 return experiments; 2322 return experiments;
2331 } 2323 }
2332 2324
2333 } // namespace testing 2325 } // namespace testing
2334 2326
2335 } // namespace about_flags 2327 } // namespace about_flags
OLDNEW
« no previous file with comments | « ash/wm/app_list_controller.cc ('k') | chrome/browser/ui/apps/chrome_app_window_delegate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698