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

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

Issue 1749573002: CC Animation: Erase old animation system in UI Compositor. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@eraseblink
Patch Set: Exclude histograms.xml Created 4 years, 9 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 1770 matching lines...) Expand 10 before | Expand all | Expand 10 after
1781 SINGLE_VALUE_TYPE(switches::kEnableWebFontsInterventionTrigger)}, 1781 SINGLE_VALUE_TYPE(switches::kEnableWebFontsInterventionTrigger)},
1782 {"enable-grouped-history", IDS_FLAGS_ENABLE_GROUPED_HISTORY_NAME, 1782 {"enable-grouped-history", IDS_FLAGS_ENABLE_GROUPED_HISTORY_NAME,
1783 IDS_FLAGS_ENABLE_GROUPED_HISTORY_DESCRIPTION, kOsDesktop, 1783 IDS_FLAGS_ENABLE_GROUPED_HISTORY_DESCRIPTION, kOsDesktop,
1784 SINGLE_VALUE_TYPE(switches::kHistoryEnableGroupByDomain)}, 1784 SINGLE_VALUE_TYPE(switches::kHistoryEnableGroupByDomain)},
1785 {"enable-token-binding", IDS_FLAGS_ENABLE_TOKEN_BINDING_NAME, 1785 {"enable-token-binding", IDS_FLAGS_ENABLE_TOKEN_BINDING_NAME,
1786 IDS_FLAGS_ENABLE_TOKEN_BINDING_DESCRIPTION, kOsAll, 1786 IDS_FLAGS_ENABLE_TOKEN_BINDING_DESCRIPTION, kOsAll,
1787 FEATURE_VALUE_TYPE(features::kTokenBinding)}, 1787 FEATURE_VALUE_TYPE(features::kTokenBinding)},
1788 {"enable-scroll-anchoring", IDS_FLAGS_ENABLE_SCROLL_ANCHORING_NAME, 1788 {"enable-scroll-anchoring", IDS_FLAGS_ENABLE_SCROLL_ANCHORING_NAME,
1789 IDS_FLAGS_ENABLE_SCROLL_ANCHORING_DESCRIPTION, kOsAll, 1789 IDS_FLAGS_ENABLE_SCROLL_ANCHORING_DESCRIPTION, kOsAll,
1790 FEATURE_VALUE_TYPE(features::kScrollAnchoring)}, 1790 FEATURE_VALUE_TYPE(features::kScrollAnchoring)},
1791 #if !defined(OS_ANDROID)
1792 {"ui-disable-compositor-animation-timelines",
1793 IDS_FLAGS_DISABLE_UI_COMPOSITOR_ANIMATION_TIMELINES,
1794 IDS_FLAGS_DISABLE_UI_COMPOSITOR_ANIMATION_TIMELINES_DESCRIPTION,
1795 kOsDesktop, SINGLE_DISABLE_VALUE_TYPE(
1796 switches::kUIDisableCompositorAnimationTimelines)},
1797 #endif // !defined(OS_ANDROID)
1798 {"enable-audio-support-for-desktop-share", 1791 {"enable-audio-support-for-desktop-share",
1799 IDS_FLAG_ENABLE_AUDIO_FOR_DESKTOP_SHARE, 1792 IDS_FLAG_ENABLE_AUDIO_FOR_DESKTOP_SHARE,
1800 IDS_FLAG_ENABLE_AUDIO_FOR_DESKTOP_SHARE_DESCRIPTION, 1793 IDS_FLAG_ENABLE_AUDIO_FOR_DESKTOP_SHARE_DESCRIPTION,
1801 kOsAll, 1794 kOsAll,
1802 SINGLE_VALUE_TYPE(switches::kEnableAudioSupportForDesktopShare)}, 1795 SINGLE_VALUE_TYPE(switches::kEnableAudioSupportForDesktopShare)},
1803 #if defined(ENABLE_EXTENSIONS) 1796 #if defined(ENABLE_EXTENSIONS)
1804 {"enable-tab-for-desktop-share", IDS_FLAG_ENABLE_TAB_FOR_DESKTOP_SHARE, 1797 {"enable-tab-for-desktop-share", IDS_FLAG_ENABLE_TAB_FOR_DESKTOP_SHARE,
1805 IDS_FLAG_ENABLE_TAB_FOR_DESKTOP_SHARE_DESCRIPTION, kOsAll, 1798 IDS_FLAG_ENABLE_TAB_FOR_DESKTOP_SHARE_DESCRIPTION, kOsAll,
1806 SINGLE_VALUE_TYPE(extensions::switches::kEnableTabForDesktopShare)} 1799 SINGLE_VALUE_TYPE(extensions::switches::kEnableTabForDesktopShare)}
1807 #endif 1800 #endif
(...skipping 222 matching lines...) Expand 10 before | Expand all | Expand 10 after
2030 const base::HistogramBase::Sample kBadSwitchFormatHistogramId = 0; 2023 const base::HistogramBase::Sample kBadSwitchFormatHistogramId = 0;
2031 2024
2032 const FeatureEntry* GetFeatureEntries(size_t* count) { 2025 const FeatureEntry* GetFeatureEntries(size_t* count) {
2033 *count = arraysize(kFeatureEntries); 2026 *count = arraysize(kFeatureEntries);
2034 return kFeatureEntries; 2027 return kFeatureEntries;
2035 } 2028 }
2036 2029
2037 } // namespace testing 2030 } // namespace testing
2038 2031
2039 } // namespace about_flags 2032 } // namespace about_flags
OLDNEW
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | chrome/browser/chromeos/login/chrome_restart_request.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698