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

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

Issue 1975753006: Pull to refresh: Use new reload type RELOAD_MAIN_RESOURCE (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: review #14 and #16 Created 4 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
« no previous file with comments | « content/public/browser/navigation_controller.h ('k') | content/renderer/render_frame_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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_features.h" 6 #include "content/public/common/content_features.h"
7 7
8 namespace features { 8 namespace features {
9 9
10 // All features in alphabetical order. 10 // All features in alphabetical order.
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 // FeatureList definition for trials to enable the download button on 42 // FeatureList definition for trials to enable the download button on
43 // MediaDocument. 43 // MediaDocument.
44 const base::Feature kMediaDocumentDownloadButton{ 44 const base::Feature kMediaDocumentDownloadButton{
45 "MediaDocumentDownloadButton", 45 "MediaDocumentDownloadButton",
46 base::FEATURE_DISABLED_BY_DEFAULT 46 base::FEATURE_DISABLED_BY_DEFAULT
47 }; 47 };
48 48
49 // Non-validating reload on reload-to-refresh-content (e.g. pull-to-refresh). 49 // Non-validating reload on reload-to-refresh-content (e.g. pull-to-refresh).
50 // See https://crbug.com/558829 50 // See https://crbug.com/558829
51 const base::Feature kNonValidatingReloadOnRefreshContent{ 51 const base::Feature kNonValidatingReloadOnRefreshContent{
52 "NonValidatingReloadOnRefreshContent", 52 "NonValidatingReloadOnRefreshContentV2",
53 base::FEATURE_DISABLED_BY_DEFAULT}; 53 base::FEATURE_DISABLED_BY_DEFAULT};
54 54
55 // An experiment to optimize resource loading IPC for small resources. 55 // An experiment to optimize resource loading IPC for small resources.
56 // http://crbug.com/580928 56 // http://crbug.com/580928
57 const base::Feature kOptimizeIPCForSmallResource{ 57 const base::Feature kOptimizeIPCForSmallResource{
58 "OptimizeForSmallResource", 58 "OptimizeForSmallResource",
59 base::FEATURE_DISABLED_BY_DEFAULT}; 59 base::FEATURE_DISABLED_BY_DEFAULT};
60 60
61 // Partial support for pointer event feature. 61 // Partial support for pointer event feature.
62 const base::Feature kPointerEvents{"PointerEvent", 62 const base::Feature kPointerEvents{"PointerEvent",
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
95 // we will not use replica editor and do a round trip to renderer to synchronize 95 // we will not use replica editor and do a round trip to renderer to synchronize
96 // with Blink data. 96 // with Blink data.
97 const base::Feature kImeThread{"ImeThread", base::FEATURE_DISABLED_BY_DEFAULT}; 97 const base::Feature kImeThread{"ImeThread", base::FEATURE_DISABLED_BY_DEFAULT};
98 98
99 // FeatureList definition for the Seccomp field trial. 99 // FeatureList definition for the Seccomp field trial.
100 const base::Feature kSeccompSandboxAndroid{"SeccompSandboxAndroid", 100 const base::Feature kSeccompSandboxAndroid{"SeccompSandboxAndroid",
101 base::FEATURE_DISABLED_BY_DEFAULT}; 101 base::FEATURE_DISABLED_BY_DEFAULT};
102 #endif 102 #endif
103 103
104 } // namespace features 104 } // namespace features
OLDNEW
« no previous file with comments | « content/public/browser/navigation_controller.h ('k') | content/renderer/render_frame_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698