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

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

Issue 14268004: Add overscroll edge effect animations for Android. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Enable by default Created 7 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
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 // Defines all the "content" command-line switches. 5 // Defines all the "content" command-line switches.
6 6
7 #ifndef CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ 7 #ifndef CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_
8 #define CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ 8 #define CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_
9 9
10 #include "build/build_config.h" 10 #include "build/build_config.h"
(...skipping 213 matching lines...) Expand 10 before | Expand all | Expand 10 after
224 CONTENT_EXPORT extern const char kEnableVsyncNotification[]; 224 CONTENT_EXPORT extern const char kEnableVsyncNotification[];
225 225
226 extern const char kEnableVisualWordMovement[]; 226 extern const char kEnableVisualWordMovement[];
227 CONTENT_EXPORT extern const char kUseMobileUserAgent[]; 227 CONTENT_EXPORT extern const char kUseMobileUserAgent[];
228 228
229 #if defined(OS_ANDROID) 229 #if defined(OS_ANDROID)
230 extern const char kDisableMediaHistoryLogging[]; 230 extern const char kDisableMediaHistoryLogging[];
231 extern const char kDisableGestureRequirementForMediaPlayback[]; 231 extern const char kDisableGestureRequirementForMediaPlayback[];
232 extern const char kNetworkCountryIso[]; 232 extern const char kNetworkCountryIso[];
233 CONTENT_EXPORT extern const char kEnableWebViewSynchronousAPIs[]; 233 CONTENT_EXPORT extern const char kEnableWebViewSynchronousAPIs[];
234 CONTENT_EXPORT extern const char kDisableOverscrollEdgeEffect[];
234 #endif 235 #endif
235 236
236 #if defined(OS_CHROMEOS) 237 #if defined(OS_CHROMEOS)
237 CONTENT_EXPORT extern const char kDisablePanelFitting[]; 238 CONTENT_EXPORT extern const char kDisablePanelFitting[];
238 #endif 239 #endif
239 240
240 #if defined(OS_POSIX) 241 #if defined(OS_POSIX)
241 extern const char kChildCleanExit[]; 242 extern const char kChildCleanExit[];
242 #endif 243 #endif
243 244
244 #if defined(OS_MACOSX) && !defined(OS_IOS) 245 #if defined(OS_MACOSX) && !defined(OS_IOS)
245 extern const char kDisableCarbonInterposing[]; 246 extern const char kDisableCarbonInterposing[];
246 #endif 247 #endif
247 248
248 #if defined(USE_AURA) 249 #if defined(USE_AURA)
249 CONTENT_EXPORT extern const char kTestCompositor[]; 250 CONTENT_EXPORT extern const char kTestCompositor[];
250 #endif 251 #endif
251 252
252 extern const char kEnableWebPInAcceptHeader[]; 253 extern const char kEnableWebPInAcceptHeader[];
253 254
254 CONTENT_EXPORT extern const char kOverscrollHistoryNavigation[]; 255 CONTENT_EXPORT extern const char kOverscrollHistoryNavigation[];
255 CONTENT_EXPORT extern const char kEnableOverscrollNotifications[]; 256 CONTENT_EXPORT extern const char kEnableOverscrollNotifications[];
256 257
257 } // namespace switches 258 } // namespace switches
258 259
259 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ 260 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698