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

Unified Diff: third_party/WebKit/Source/platform/RuntimeEnabledFeatures.in

Issue 1968653002: Rename flags for Origin Trials framework (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address comments 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/platform/RuntimeEnabledFeatures.in
diff --git a/third_party/WebKit/Source/platform/RuntimeEnabledFeatures.in b/third_party/WebKit/Source/platform/RuntimeEnabledFeatures.in
index d8e425d826ece2eca5d8ab0f40f763a61b1f3914..e6d7cc1e4a1d13995bc0fe55e6ac944cf7067270 100644
--- a/third_party/WebKit/Source/platform/RuntimeEnabledFeatures.in
+++ b/third_party/WebKit/Source/platform/RuntimeEnabledFeatures.in
@@ -17,10 +17,12 @@
// "stable" features listed here should be rare, as anything which we've shipped stable
// can have its runtime flag removed soon after.
//
-// origin_trial_feature_name=FEATURE_NAME is used to integrate the feature with the experimental framework, so that the
-// feature can be enabled at runtime on a per-page basis through a signed token for the corresponding feature name.
-// Declaring the origin_trial_feature_name will cause a static method to be generated in OriginTrials.h/cpp. This static
-// method allows the feature implementation to check if it is enabled for the current context.
+// origin_trial_feature_name=FEATURE_NAME is used to integrate the feature with
+// the Origin Trials framework. The framework allows the feature to be enabled
+// at runtime on a per-page basis through a signed token for the corresponding
+// feature name. Declaring the origin_trial_feature_name will cause a static
+// method to be generated in OriginTrials.h/cpp. This static method allows the
+// feature implementation to check if it is enabled for the current context.
//
// settable_from_internals specifies whether a feature can be set from internals.runtimeFlags, with the default
// being false.
@@ -81,12 +83,6 @@ ExecCommandInJavaScript status=test
ComputedAccessibilityInfo status=experimental
ExperimentalCanvasFeatures status=test
ExperimentalContentSecurityPolicyFeatures status=experimental
-ExperimentalFramework status=stable
-// Define a sample API for testing integration with the Experimental Framework.
-// The sample API is used in both unit and layout tests for the Experimental
-// Framework. Do not change this flag to stable, as it exists solely to generate
-// code used by the sample API implementation.
-ExperimentalFrameworkSampleAPI origin_trial_feature_name=Frobulate
ExperimentalV8Extras status=experimental
FastMobileScrolling
FileAPIBlobClose status=experimental
@@ -143,6 +139,12 @@ NotificationInlineReplies status=experimental
Notifications status=stable
OnDeviceChange status=experimental
OrientationEvent
+OriginTrials status=stable
+// Define a sample API for testing integration with the Origin Trials Framework.
+// The sample API is used in both unit and layout tests for the Origin Trials
+// Framework. Do not change this flag to stable, as it exists solely to generate
+// code used by the sample API implementation.
+OriginTrialsSampleAPI origin_trial_feature_name=Frobulate
// For simulating Android's overlay fullscreen video in layout tests on Linux.
ForceOverlayFullscreenVideo
OverlayScrollbars

Powered by Google App Engine
This is Rietveld 408576698