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

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

Issue 1739743003: Blink Compositor Animation: Erase old animation system. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
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 {"disable-compositor-animation-timelines",
1792 IDS_FLAGS_DISABLE_COMPOSITOR_ANIMATION_TIMELINES,
1793 IDS_FLAGS_DISABLE_COMPOSITOR_ANIMATION_TIMELINES_DESCRIPTION,
1794 kOsAll, SINGLE_DISABLE_VALUE_TYPE(
1795 switches::kDisableCompositorAnimationTimelines)},
1796 #if !defined(OS_ANDROID) 1791 #if !defined(OS_ANDROID)
1797 {"ui-disable-compositor-animation-timelines", 1792 {"ui-disable-compositor-animation-timelines",
1798 IDS_FLAGS_DISABLE_UI_COMPOSITOR_ANIMATION_TIMELINES, 1793 IDS_FLAGS_DISABLE_UI_COMPOSITOR_ANIMATION_TIMELINES,
1799 IDS_FLAGS_DISABLE_UI_COMPOSITOR_ANIMATION_TIMELINES_DESCRIPTION, 1794 IDS_FLAGS_DISABLE_UI_COMPOSITOR_ANIMATION_TIMELINES_DESCRIPTION,
1800 kOsDesktop, SINGLE_DISABLE_VALUE_TYPE( 1795 kOsDesktop, SINGLE_DISABLE_VALUE_TYPE(
1801 switches::kUIDisableCompositorAnimationTimelines)}, 1796 switches::kUIDisableCompositorAnimationTimelines)},
1802 #endif // !defined(OS_ANDROID) 1797 #endif // !defined(OS_ANDROID)
1803 {"enable-audio-support-for-desktop-share", 1798 {"enable-audio-support-for-desktop-share",
1804 IDS_FLAG_ENABLE_AUDIO_FOR_DESKTOP_SHARE, 1799 IDS_FLAG_ENABLE_AUDIO_FOR_DESKTOP_SHARE,
1805 IDS_FLAG_ENABLE_AUDIO_FOR_DESKTOP_SHARE_DESCRIPTION, 1800 IDS_FLAG_ENABLE_AUDIO_FOR_DESKTOP_SHARE_DESCRIPTION,
(...skipping 229 matching lines...) Expand 10 before | Expand all | Expand 10 after
2035 const base::HistogramBase::Sample kBadSwitchFormatHistogramId = 0; 2030 const base::HistogramBase::Sample kBadSwitchFormatHistogramId = 0;
2036 2031
2037 const FeatureEntry* GetFeatureEntries(size_t* count) { 2032 const FeatureEntry* GetFeatureEntries(size_t* count) {
2038 *count = arraysize(kFeatureEntries); 2033 *count = arraysize(kFeatureEntries);
2039 return kFeatureEntries; 2034 return kFeatureEntries;
2040 } 2035 }
2041 2036
2042 } // namespace testing 2037 } // namespace testing
2043 2038
2044 } // namespace about_flags 2039 } // 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