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

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

Issue 1493403002: Make pull to refresh not perform regular reload (with cache revalidation) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix Created 5 years 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 | « content/public/common/content_switches.h ('k') | no next file » | 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 "content/public/common/content_switches.h" 5 #include "content/public/common/content_switches.h"
6 6
7 namespace switches { 7 namespace switches {
8 8
9 // The number of MSAA samples for canvas2D. Requires MSAA support by GPU to 9 // The number of MSAA samples for canvas2D. Requires MSAA support by GPU to
10 // have an effect. 0 disables MSAA. 10 // have an effect. 0 disables MSAA.
(...skipping 370 matching lines...) Expand 10 before | Expand all | Expand 10 after
381 // Force logging to be enabled. Logging is disabled by default in release 381 // Force logging to be enabled. Logging is disabled by default in release
382 // builds. 382 // builds.
383 const char kEnableLogging[] = "enable-logging"; 383 const char kEnableLogging[] = "enable-logging";
384 384
385 // Enables the memory benchmarking extension 385 // Enables the memory benchmarking extension
386 const char kEnableMemoryBenchmarking[] = "enable-memory-benchmarking"; 386 const char kEnableMemoryBenchmarking[] = "enable-memory-benchmarking";
387 387
388 // Enables the network information API. 388 // Enables the network information API.
389 const char kEnableNetworkInformation[] = "enable-network-information"; 389 const char kEnableNetworkInformation[] = "enable-network-information";
390 390
391 // Enables non-validating reload on reload-to-refresh-content (e.g. pull-
392 // to-refresh).
393 const char kEnableNonValidatingReloadOnRefreshContent[] =
394 "enable-non-validating-reload-on-refresh-content";
395
391 // Enables partial raster. Enabling this switch also enables the use of 396 // Enables partial raster. Enabling this switch also enables the use of
392 // persistent gpu memory buffers. 397 // persistent gpu memory buffers.
393 const char kEnablePartialRaster[] = "enable-partial-raster"; 398 const char kEnablePartialRaster[] = "enable-partial-raster";
394 399
395 // Enables compositor-accelerated touch-screen pinch gestures. 400 // Enables compositor-accelerated touch-screen pinch gestures.
396 const char kEnablePinch[] = "enable-pinch"; 401 const char kEnablePinch[] = "enable-pinch";
397 402
398 // Enables testing features of the Plugin Placeholder. For internal use only. 403 // Enables testing features of the Plugin Placeholder. For internal use only.
399 const char kEnablePluginPlaceholderTesting[] = 404 const char kEnablePluginPlaceholderTesting[] =
400 "enable-plugin-placeholder-testing"; 405 "enable-plugin-placeholder-testing";
(...skipping 583 matching lines...) Expand 10 before | Expand all | Expand 10 after
984 // Windows Vista and later. 989 // Windows Vista and later.
985 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; 990 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw";
986 #endif 991 #endif
987 992
988 // Enable the Mojo shell connection in renderers. 993 // Enable the Mojo shell connection in renderers.
989 const char kEnableMojoShellConnection[] = "enable-mojo-shell-connection"; 994 const char kEnableMojoShellConnection[] = "enable-mojo-shell-connection";
990 995
991 // Don't dump stuff here, follow the same order as the header. 996 // Don't dump stuff here, follow the same order as the header.
992 997
993 } // namespace switches 998 } // namespace switches
OLDNEW
« no previous file with comments | « content/public/common/content_switches.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698