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

Unified Diff: content/public/common/content_features.cc

Issue 2946113002: Use FrameIsAd to decide whether to isolate a frame in TopDocumentIsolation mode. (Closed)
Patch Set: Doh... need to also change s/Default/Unspecified/ in chrome_content_browser_client.cc Created 3 years, 5 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: content/public/common/content_features.cc
diff --git a/content/public/common/content_features.cc b/content/public/common/content_features.cc
index 641997fc210b8c3cc52e26f4dc9cd9d98327477a..7648affc37b4a4127ddf57597489deb180da8361 100644
--- a/content/public/common/content_features.cc
+++ b/content/public/common/content_features.cc
@@ -272,6 +272,11 @@ const base::Feature kTokenBinding{"token-binding",
const base::Feature kTopDocumentIsolation{"top-document-isolation",
base::FEATURE_DISABLED_BY_DEFAULT};
+// Finch Experiment Param (see base::GetFieldTrialParamValueByFeature)
Alexei Svitkine (slow) 2017/07/07 16:55:05 In source code, we don't usually use the term "Fin
Łukasz Anforowicz 2017/07/07 20:41:42 Done.
+// controlling the mode for selecting which subframes end in the TDI process.
+// Valid values are integers from the TopDocumentIsolationMode enum.
+const char kTopDocumentIsolationModeParam[] = "mode";
+
// Enables touchpad and wheel scroll latching.
const base::Feature kTouchpadAndWheelScrollLatching{
"TouchpadAndWheelScrollLatching", base::FEATURE_DISABLED_BY_DEFAULT};

Powered by Google App Engine
This is Rietveld 408576698