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

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

Issue 2921923002: Remove chrome://flag enable-pointer-events (Closed)
Patch Set: Rebase Created 3 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
« no previous file with comments | « no previous file | chrome/browser/flag_descriptions.h » ('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 2506 matching lines...) Expand 10 before | Expand all | Expand 10 after
2517 SINGLE_VALUE_TYPE(switches::kEnableFullscreenToolbarReveal)}, 2517 SINGLE_VALUE_TYPE(switches::kEnableFullscreenToolbarReveal)},
2518 #endif // OS_MACOSX 2518 #endif // OS_MACOSX
2519 {"important-sites-in-cbd", flag_descriptions::kImportantSitesInCbdName, 2519 {"important-sites-in-cbd", flag_descriptions::kImportantSitesInCbdName,
2520 flag_descriptions::kImportantSitesInCbdDescription, kOsAll, 2520 flag_descriptions::kImportantSitesInCbdDescription, kOsAll,
2521 FEATURE_VALUE_TYPE(features::kImportantSitesInCbd)}, 2521 FEATURE_VALUE_TYPE(features::kImportantSitesInCbd)},
2522 #if defined(OS_ANDROID) 2522 #if defined(OS_ANDROID)
2523 {"tabs-in-cbd", flag_descriptions::kTabsInCbdName, 2523 {"tabs-in-cbd", flag_descriptions::kTabsInCbdName,
2524 flag_descriptions::kTabsInCbdDescription, kOsAndroid, 2524 flag_descriptions::kTabsInCbdDescription, kOsAndroid,
2525 FEATURE_VALUE_TYPE(features::kTabsInCbd)}, 2525 FEATURE_VALUE_TYPE(features::kTabsInCbd)},
2526 #endif // OS_ANDROID 2526 #endif // OS_ANDROID
2527 {"enable-pointer-events", flag_descriptions::kExperimentalPointerEventName,
2528 flag_descriptions::kExperimentalPointerEventDescription, kOsAll,
2529 FEATURE_VALUE_TYPE(features::kPointerEvents)},
2530 {"passive-listener-default", 2527 {"passive-listener-default",
2531 flag_descriptions::kPassiveEventListenerDefaultName, 2528 flag_descriptions::kPassiveEventListenerDefaultName,
2532 flag_descriptions::kPassiveEventListenerDefaultDescription, kOsAll, 2529 flag_descriptions::kPassiveEventListenerDefaultDescription, kOsAll,
2533 MULTI_VALUE_TYPE(kPassiveListenersChoices)}, 2530 MULTI_VALUE_TYPE(kPassiveListenersChoices)},
2534 {"document-passive-event-listeners", 2531 {"document-passive-event-listeners",
2535 flag_descriptions::kPassiveDocumentEventListenersName, 2532 flag_descriptions::kPassiveDocumentEventListenersName,
2536 flag_descriptions::kPassiveDocumentEventListenersDescription, kOsAll, 2533 flag_descriptions::kPassiveDocumentEventListenersDescription, kOsAll,
2537 FEATURE_VALUE_TYPE(features::kPassiveDocumentEventListeners)}, 2534 FEATURE_VALUE_TYPE(features::kPassiveDocumentEventListeners)},
2538 {"passive-event-listeners-due-to-fling", 2535 {"passive-event-listeners-due-to-fling",
2539 flag_descriptions::kPassiveEventListenersDueToFlingName, 2536 flag_descriptions::kPassiveEventListenersDueToFlingName,
(...skipping 735 matching lines...) Expand 10 before | Expand all | Expand 10 after
3275 const base::HistogramBase::Sample kBadSwitchFormatHistogramId = 0; 3272 const base::HistogramBase::Sample kBadSwitchFormatHistogramId = 0;
3276 3273
3277 const FeatureEntry* GetFeatureEntries(size_t* count) { 3274 const FeatureEntry* GetFeatureEntries(size_t* count) {
3278 *count = arraysize(kFeatureEntries); 3275 *count = arraysize(kFeatureEntries);
3279 return kFeatureEntries; 3276 return kFeatureEntries;
3280 } 3277 }
3281 3278
3282 } // namespace testing 3279 } // namespace testing
3283 3280
3284 } // namespace about_flags 3281 } // namespace about_flags
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/flag_descriptions.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698