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

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

Issue 2752203002: FasterLocationReload: remove the field trial flag (Closed)
Patch Set: Created 3 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 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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 // load an external script. The feature extracts the written markup and sends it 47 // load an external script. The feature extracts the written markup and sends it
48 // to the preload scanner. 48 // to the preload scanner.
49 const base::Feature kDocumentWriteEvaluator{"DocumentWriteEvaluator", 49 const base::Feature kDocumentWriteEvaluator{"DocumentWriteEvaluator",
50 base::FEATURE_DISABLED_BY_DEFAULT}; 50 base::FEATURE_DISABLED_BY_DEFAULT};
51 51
52 // Throttle tasks in Blink background timer queues based on CPU budgets 52 // Throttle tasks in Blink background timer queues based on CPU budgets
53 // for the background tab. Bug: https://crbug.com/639852. 53 // for the background tab. Bug: https://crbug.com/639852.
54 const base::Feature kExpensiveBackgroundTimerThrottling{ 54 const base::Feature kExpensiveBackgroundTimerThrottling{
55 "ExpensiveBackgroundTimerThrottling", base::FEATURE_DISABLED_BY_DEFAULT}; 55 "ExpensiveBackgroundTimerThrottling", base::FEATURE_DISABLED_BY_DEFAULT};
56 56
57 // Enables faster location.reload() to use a reload mode that revalidates only
58 // main resource forcibly. https://crbug.com/670237.
59 const base::Feature kFasterLocationReload{"FasterLocationReload",
60 base::FEATURE_ENABLED_BY_DEFAULT};
61
62 // Enables the Feature Policy framework for granting and removing access to 57 // Enables the Feature Policy framework for granting and removing access to
63 // other features through HTTP headers. 58 // other features through HTTP headers.
64 const base::Feature kFeaturePolicy{"FeaturePolicy", 59 const base::Feature kFeaturePolicy{"FeaturePolicy",
65 base::FEATURE_DISABLED_BY_DEFAULT}; 60 base::FEATURE_DISABLED_BY_DEFAULT};
66 61
67 // Enable filtering of same-origin tiny plugins 62 // Enable filtering of same-origin tiny plugins
68 const base::Feature kFilterSameOriginTinyPlugin{ 63 const base::Feature kFilterSameOriginTinyPlugin{
69 "FilterSameOriginTinyPlugins", base::FEATURE_DISABLED_BY_DEFAULT}; 64 "FilterSameOriginTinyPlugins", base::FEATURE_DISABLED_BY_DEFAULT};
70 65
71 // Enables a blink::FontCache optimization that reuses a font to serve different 66 // Enables a blink::FontCache optimization that reuses a font to serve different
(...skipping 233 matching lines...) Expand 10 before | Expand all | Expand 10 after
305 #endif // !defined(OS_ANDROID) 300 #endif // !defined(OS_ANDROID)
306 301
307 #if defined(OS_WIN) 302 #if defined(OS_WIN)
308 // Emergency "off switch" for new Windows sandbox security mitigation, 303 // Emergency "off switch" for new Windows sandbox security mitigation,
309 // sandbox::MITIGATION_EXTENSION_POINT_DISABLE. 304 // sandbox::MITIGATION_EXTENSION_POINT_DISABLE.
310 const base::Feature kWinSboxDisableExtensionPoints{ 305 const base::Feature kWinSboxDisableExtensionPoints{
311 "WinSboxDisableExtensionPoint", base::FEATURE_ENABLED_BY_DEFAULT}; 306 "WinSboxDisableExtensionPoint", base::FEATURE_ENABLED_BY_DEFAULT};
312 #endif 307 #endif
313 308
314 } // namespace features 309 } // namespace features
OLDNEW
« no previous file with comments | « content/public/common/content_features.h ('k') | third_party/WebKit/Source/core/frame/History.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698