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

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

Issue 358553004: Added text filtering to Overview Mode (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed unittest Created 6 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/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 1062 matching lines...) Expand 10 before | Expand all | Expand 10 after
1073 IDS_FLAGS_DEBUG_SHORTCUTS_DESCRIPTION, 1073 IDS_FLAGS_DEBUG_SHORTCUTS_DESCRIPTION,
1074 kOsAll, 1074 kOsAll,
1075 SINGLE_VALUE_TYPE(ash::switches::kAshDebugShortcuts), 1075 SINGLE_VALUE_TYPE(ash::switches::kAshDebugShortcuts),
1076 }, 1076 },
1077 { "ash-enable-touch-view-testing", 1077 { "ash-enable-touch-view-testing",
1078 IDS_FLAGS_ASH_ENABLE_TOUCH_VIEW_TESTING_NAME, 1078 IDS_FLAGS_ASH_ENABLE_TOUCH_VIEW_TESTING_NAME,
1079 IDS_FLAGS_ASH_ENABLE_TOUCH_VIEW_TESTING_DESCRIPTION, 1079 IDS_FLAGS_ASH_ENABLE_TOUCH_VIEW_TESTING_DESCRIPTION,
1080 kOsCrOS, 1080 kOsCrOS,
1081 SINGLE_VALUE_TYPE(ash::switches::kAshEnableTouchViewTesting), 1081 SINGLE_VALUE_TYPE(ash::switches::kAshEnableTouchViewTesting),
1082 }, 1082 },
1083 { "ash-disable-text-filtering-in-overview-mode",
1084 IDS_FLAGS_ASH_DISABLE_TEXT_FILTERING_IN_OVERVIEW_MODE_NAME,
1085 IDS_FLAGS_ASH_DISABLE_TEXT_FILTERING_IN_OVERVIEW_MODE_DESCRIPTION,
1086 kOsCrOS,
1087 SINGLE_VALUE_TYPE(ash::switches::kAshDisableTextFilteringInOverviewMode),
1088 },
1083 #endif 1089 #endif
1084 #if defined(OS_CHROMEOS) 1090 #if defined(OS_CHROMEOS)
1085 { 1091 {
1086 "enable-carrier-switching", 1092 "enable-carrier-switching",
1087 IDS_FLAGS_ENABLE_CARRIER_SWITCHING, 1093 IDS_FLAGS_ENABLE_CARRIER_SWITCHING,
1088 IDS_FLAGS_ENABLE_CARRIER_SWITCHING_DESCRIPTION, 1094 IDS_FLAGS_ENABLE_CARRIER_SWITCHING_DESCRIPTION,
1089 kOsCrOS, 1095 kOsCrOS,
1090 SINGLE_VALUE_TYPE(chromeos::switches::kEnableCarrierSwitching) 1096 SINGLE_VALUE_TYPE(chromeos::switches::kEnableCarrierSwitching)
1091 }, 1097 },
1092 { 1098 {
(...skipping 1383 matching lines...) Expand 10 before | Expand all | Expand 10 after
2476 } 2482 }
2477 2483
2478 const Experiment* GetExperiments(size_t* count) { 2484 const Experiment* GetExperiments(size_t* count) {
2479 *count = num_experiments; 2485 *count = num_experiments;
2480 return experiments; 2486 return experiments;
2481 } 2487 }
2482 2488
2483 } // namespace testing 2489 } // namespace testing
2484 2490
2485 } // namespace about_flags 2491 } // namespace about_flags
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698