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

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

Issue 2012763005: Remove the simplified-fullscreen-ui flag on Mac. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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
« no previous file with comments | « no previous file | chrome/browser/ui/exclusive_access/exclusive_access_manager.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 <iterator> 7 #include <iterator>
8 #include <map> 8 #include <map>
9 #include <set> 9 #include <set>
10 #include <utility> 10 #include <utility>
(...skipping 1573 matching lines...) Expand 10 before | Expand all | Expand 10 after
1584 IDS_FLAGS_V8_CACHE_STRATEGIES_FOR_CACHE_STORAGE_NAME, 1584 IDS_FLAGS_V8_CACHE_STRATEGIES_FOR_CACHE_STORAGE_NAME,
1585 IDS_FLAGS_V8_CACHE_STRATEGIES_FOR_CACHE_STORAGE_DESCRIPTION, kOsAll, 1585 IDS_FLAGS_V8_CACHE_STRATEGIES_FOR_CACHE_STORAGE_DESCRIPTION, kOsAll,
1586 MULTI_VALUE_TYPE(kV8CacheStrategiesForCacheStorageChoices)}, 1586 MULTI_VALUE_TYPE(kV8CacheStrategiesForCacheStorageChoices)},
1587 {"enable-clear-browsing-data-counters", 1587 {"enable-clear-browsing-data-counters",
1588 IDS_FLAGS_ENABLE_CLEAR_BROWSING_DATA_COUNTERS_NAME, 1588 IDS_FLAGS_ENABLE_CLEAR_BROWSING_DATA_COUNTERS_NAME,
1589 IDS_FLAGS_ENABLE_CLEAR_BROWSING_DATA_COUNTERS_DESCRIPTION, kOsAll, 1589 IDS_FLAGS_ENABLE_CLEAR_BROWSING_DATA_COUNTERS_DESCRIPTION, kOsAll,
1590 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableClearBrowsingDataCounters, 1590 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableClearBrowsingDataCounters,
1591 switches::kDisableClearBrowsingDataCounters)}, 1591 switches::kDisableClearBrowsingDataCounters)},
1592 #if defined(ENABLE_TASK_MANAGER) 1592 #if defined(ENABLE_TASK_MANAGER)
1593 {"disable-new-task-manager", IDS_FLAGS_NEW_TASK_MANAGER_NAME, 1593 {"disable-new-task-manager", IDS_FLAGS_NEW_TASK_MANAGER_NAME,
1594 IDS_FLAGS_NEW_TASK_MANAGER_DESCRIPTION, kOsDesktop, 1594 IDS_FLAGS_NEW_TASK_MANAGER_DESCRIPTION,
1595 kOsWin | kOsLinux | kOsCrOS | kOsAndroid,
Matt Giuca 2016/05/26 05:42:05 Um wait don't look at this lol.
Matt Giuca 2016/05/26 05:46:32 OK fixed.
1595 SINGLE_DISABLE_VALUE_TYPE(switches::kDisableNewTaskManager)}, 1596 SINGLE_DISABLE_VALUE_TYPE(switches::kDisableNewTaskManager)},
1596 #endif // defined(ENABLE_TASK_MANAGER) 1597 #endif // defined(ENABLE_TASK_MANAGER)
1597 {"simplified-fullscreen-ui", IDS_FLAGS_SIMPLIFIED_FULLSCREEN_UI_NAME, 1598 {"simplified-fullscreen-ui", IDS_FLAGS_SIMPLIFIED_FULLSCREEN_UI_NAME,
1598 IDS_FLAGS_SIMPLIFIED_FULLSCREEN_UI_DESCRIPTION, kOsAll, 1599 IDS_FLAGS_SIMPLIFIED_FULLSCREEN_UI_DESCRIPTION, kOsAll,
1599 FEATURE_VALUE_TYPE(features::kSimplifiedFullscreenUI)}, 1600 FEATURE_VALUE_TYPE(features::kSimplifiedFullscreenUI)},
1600 {"experimental-keyboard-lock-ui", 1601 {"experimental-keyboard-lock-ui",
1601 IDS_FLAGS_EXPERIMENTAL_KEYBOARD_LOCK_UI_NAME, 1602 IDS_FLAGS_EXPERIMENTAL_KEYBOARD_LOCK_UI_NAME,
1602 IDS_FLAGS_EXPERIMENTAL_KEYBOARD_LOCK_UI_DESCRIPTION, kOsDesktop, 1603 IDS_FLAGS_EXPERIMENTAL_KEYBOARD_LOCK_UI_DESCRIPTION, kOsDesktop,
1603 FEATURE_VALUE_TYPE(features::kExperimentalKeyboardLockUI)}, 1604 FEATURE_VALUE_TYPE(features::kExperimentalKeyboardLockUI)},
1604 #if defined(OS_ANDROID) 1605 #if defined(OS_ANDROID)
(...skipping 481 matching lines...) Expand 10 before | Expand all | Expand 10 after
2086 const base::HistogramBase::Sample kBadSwitchFormatHistogramId = 0; 2087 const base::HistogramBase::Sample kBadSwitchFormatHistogramId = 0;
2087 2088
2088 const FeatureEntry* GetFeatureEntries(size_t* count) { 2089 const FeatureEntry* GetFeatureEntries(size_t* count) {
2089 *count = arraysize(kFeatureEntries); 2090 *count = arraysize(kFeatureEntries);
2090 return kFeatureEntries; 2091 return kFeatureEntries;
2091 } 2092 }
2092 2093
2093 } // namespace testing 2094 } // namespace testing
2094 2095
2095 } // namespace about_flags 2096 } // namespace about_flags
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/ui/exclusive_access/exclusive_access_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698