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

Side by Side Diff: content/public/common/content_switches.cc

Issue 1747783002: CC Animation: Erase old animation system in Android Compositor. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix compilation. 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 "build/build_config.h" 5 #include "build/build_config.h"
6 #include "content/public/common/content_switches.h" 6 #include "content/public/common/content_switches.h"
7 7
8 namespace switches { 8 namespace switches {
9 9
10 // The number of MSAA samples for canvas2D. Requires MSAA support by GPU to 10 // The number of MSAA samples for canvas2D. Requires MSAA support by GPU to
(...skipping 904 matching lines...) Expand 10 before | Expand all | Expand 10 after
915 // interval. Please see SetupStunProbeTrial in 915 // interval. Please see SetupStunProbeTrial in
916 // chrome_browser_field_trials_desktop.cc for more detail. 916 // chrome_browser_field_trials_desktop.cc for more detail.
917 const char kWebRtcStunProbeTrialParameter[] = "webrtc-stun-probe-trial"; 917 const char kWebRtcStunProbeTrialParameter[] = "webrtc-stun-probe-trial";
918 918
919 // Override the maximum framerate as can be specified in calls to getUserMedia. 919 // Override the maximum framerate as can be specified in calls to getUserMedia.
920 // This flag expects a value. Example: --max-gum-fps=17.5 920 // This flag expects a value. Example: --max-gum-fps=17.5
921 const char kWebRtcMaxCaptureFramerate[] = "max-gum-fps"; 921 const char kWebRtcMaxCaptureFramerate[] = "max-gum-fps";
922 #endif 922 #endif
923 923
924 #if defined(OS_ANDROID) 924 #if defined(OS_ANDROID)
925 // Disable external animation system for Android compositor.
926 // See also kDisableCompositorAnimationTimelines for renderer compositors.
927 const char kDisableAndroidCompositorAnimationTimelines[] =
928 "disable-android-compositor-animation-timelines";
929
930 // Disable overscroll edge effects like those found in Android views. 925 // Disable overscroll edge effects like those found in Android views.
931 const char kDisableOverscrollEdgeEffect[] = "disable-overscroll-edge-effect"; 926 const char kDisableOverscrollEdgeEffect[] = "disable-overscroll-edge-effect";
932 927
933 // Disable the pull-to-refresh effect when vertically overscrolling content. 928 // Disable the pull-to-refresh effect when vertically overscrolling content.
934 const char kDisablePullToRefreshEffect[] = "disable-pull-to-refresh-effect"; 929 const char kDisablePullToRefreshEffect[] = "disable-pull-to-refresh-effect";
935 930
936 // Disable the locking feature of the screen orientation API. 931 // Disable the locking feature of the screen orientation API.
937 const char kDisableScreenOrientationLock[] = "disable-screen-orientation-lock"; 932 const char kDisableScreenOrientationLock[] = "disable-screen-orientation-lock";
938 933
939 // Enable inverting of selection handles so that they are not clipped by the 934 // Enable inverting of selection handles so that they are not clipped by the
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after
1050 const char kMemoryPressureThresholdsMb[] = "memory-pressure-thresholds-mb"; 1045 const char kMemoryPressureThresholdsMb[] = "memory-pressure-thresholds-mb";
1051 1046
1052 // Enables the exporting of the tracing events to ETW. This is only supported on 1047 // Enables the exporting of the tracing events to ETW. This is only supported on
1053 // Windows Vista and later. 1048 // Windows Vista and later.
1054 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; 1049 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw";
1055 #endif 1050 #endif
1056 1051
1057 // Don't dump stuff here, follow the same order as the header. 1052 // Don't dump stuff here, follow the same order as the header.
1058 1053
1059 } // namespace switches 1054 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698