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

Unified Diff: third_party/WebKit/Source/modules/installedapp/NavigatorInstalledApp.idl

Issue 2880713002: Support combination of [OriginTrialEnabled] and [SecureContext] (Closed)
Patch Set: Rebase Created 3 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/modules/installedapp/NavigatorInstalledApp.idl
diff --git a/third_party/WebKit/Source/modules/installedapp/NavigatorInstalledApp.idl b/third_party/WebKit/Source/modules/installedapp/NavigatorInstalledApp.idl
index dc2b26d586e43c8e4e3627f4fedca912b6efded1..c52f67b763fa7d047d61b85bb76146260d625507 100644
--- a/third_party/WebKit/Source/modules/installedapp/NavigatorInstalledApp.idl
+++ b/third_party/WebKit/Source/modules/installedapp/NavigatorInstalledApp.idl
@@ -8,9 +8,5 @@
[
OriginTrialEnabled=InstalledApp,
] partial interface Navigator {
- // TODO(mgiuca): Add [SecureContext] to this method. Currently prevented due
- // to clash with OriginTrialEnabled (so it is manually checked in the method
- // installation code instead). This can be resolved either when
- // OriginTrialEnabled is removed, or https://crbug.com/695123 is fixed.
- [CallWith=ScriptState, Measure] Promise<RelatedApplication> getInstalledRelatedApps();
+ [CallWith=ScriptState, Measure, SecureContext] Promise<RelatedApplication> getInstalledRelatedApps();
};

Powered by Google App Engine
This is Rietveld 408576698