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

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

Issue 580903003: Move Touch Feedback flag to ui_base_switches (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix tests Created 6 years, 2 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
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | tools/metrics/histograms/histograms.xml » ('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 <iterator> 7 #include <iterator>
8 #include <map> 8 #include <map>
9 #include <set> 9 #include <set>
10 #include <utility> 10 #include <utility>
(...skipping 1005 matching lines...) Expand 10 before | Expand all | Expand 10 after
1016 kOsAll, 1016 kOsAll,
1017 SINGLE_VALUE_TYPE(ash::switches::kAshDebugShortcuts), 1017 SINGLE_VALUE_TYPE(ash::switches::kAshDebugShortcuts),
1018 }, 1018 },
1019 { "ash-enable-touch-view-testing", 1019 { "ash-enable-touch-view-testing",
1020 IDS_FLAGS_ASH_ENABLE_TOUCH_VIEW_TESTING_NAME, 1020 IDS_FLAGS_ASH_ENABLE_TOUCH_VIEW_TESTING_NAME,
1021 IDS_FLAGS_ASH_ENABLE_TOUCH_VIEW_TESTING_DESCRIPTION, 1021 IDS_FLAGS_ASH_ENABLE_TOUCH_VIEW_TESTING_DESCRIPTION,
1022 kOsCrOS, 1022 kOsCrOS,
1023 SINGLE_VALUE_TYPE(ash::switches::kAshEnableTouchViewTesting), 1023 SINGLE_VALUE_TYPE(ash::switches::kAshEnableTouchViewTesting),
1024 }, 1024 },
1025 { 1025 {
1026 "ash-enable-touch-view-touch-feedback", 1026 "enable-touch-feedback",
1027 IDS_FLAGS_ASH_ENABLE_TOUCH_VIEW_TOUCH_FEEDBACK_NAME, 1027 IDS_FLAGS_ENABLE_TOUCH_FEEDBACK_NAME,
1028 IDS_FLAGS_ASH_ENABLE_TOUCH_VIEW_TOUCH_FEEDBACK_DESCRIPTION, 1028 IDS_FLAGS_ENABLE_TOUCH_FEEDBACK_DESCRIPTION,
1029 kOsCrOS, 1029 kOsCrOS,
1030 SINGLE_VALUE_TYPE(ash::switches::kAshEnableTouchViewTouchFeedback), 1030 SINGLE_VALUE_TYPE(switches::kEnableTouchFeedback),
1031 }, 1031 },
1032 { "ash-disable-text-filtering-in-overview-mode", 1032 { "ash-disable-text-filtering-in-overview-mode",
1033 IDS_FLAGS_ASH_DISABLE_TEXT_FILTERING_IN_OVERVIEW_MODE_NAME, 1033 IDS_FLAGS_ASH_DISABLE_TEXT_FILTERING_IN_OVERVIEW_MODE_NAME,
1034 IDS_FLAGS_ASH_DISABLE_TEXT_FILTERING_IN_OVERVIEW_MODE_DESCRIPTION, 1034 IDS_FLAGS_ASH_DISABLE_TEXT_FILTERING_IN_OVERVIEW_MODE_DESCRIPTION,
1035 kOsCrOS, 1035 kOsCrOS,
1036 SINGLE_VALUE_TYPE(ash::switches::kAshDisableTextFilteringInOverviewMode), 1036 SINGLE_VALUE_TYPE(ash::switches::kAshDisableTextFilteringInOverviewMode),
1037 }, 1037 },
1038 #endif // defined(USE_ASH) 1038 #endif // defined(USE_ASH)
1039 #if defined(OS_CHROMEOS) 1039 #if defined(OS_CHROMEOS)
1040 { 1040 {
(...skipping 1478 matching lines...) Expand 10 before | Expand all | Expand 10 after
2519 } 2519 }
2520 2520
2521 const Experiment* GetExperiments(size_t* count) { 2521 const Experiment* GetExperiments(size_t* count) {
2522 *count = num_experiments; 2522 *count = num_experiments;
2523 return experiments; 2523 return experiments;
2524 } 2524 }
2525 2525
2526 } // namespace testing 2526 } // namespace testing
2527 2527
2528 } // namespace about_flags 2528 } // namespace about_flags
OLDNEW
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | tools/metrics/histograms/histograms.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698