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

Unified Diff: third_party/WebKit/public/web/WebFrameOwnerProperties.h

Issue 2733823004: Remove old permission delegation prototype (Closed)
Patch Set: update webexposed layout tests 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/WebKit/Source/web/WebLocalFrameImpl.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/public/web/WebFrameOwnerProperties.h
diff --git a/third_party/WebKit/public/web/WebFrameOwnerProperties.h b/third_party/WebKit/public/web/WebFrameOwnerProperties.h
index 5ba8d741452c0cd03e6bcd0a8fc674957c44ba90..9dce98f3392c764bd11f28fe54592aab91efe1c3 100644
--- a/third_party/WebKit/public/web/WebFrameOwnerProperties.h
+++ b/third_party/WebKit/public/web/WebFrameOwnerProperties.h
@@ -8,7 +8,6 @@
#include "../platform/WebFeaturePolicy.h"
#include "../platform/WebString.h"
#include "../platform/WebVector.h"
-#include "third_party/WebKit/public/platform/modules/permissions/permission.mojom-shared.h"
#include <algorithm>
@@ -24,7 +23,6 @@ struct WebFrameOwnerProperties {
bool allowFullscreen;
bool allowPaymentRequest;
WebString requiredCsp;
- WebVector<mojom::PermissionName> delegatedPermissions;
public:
WebVector<WebFeaturePolicyFeature> allowedFeatures;
@@ -45,7 +43,6 @@ struct WebFrameOwnerProperties {
bool allowFullscreen,
bool allowPaymentRequest,
const WebString& requiredCsp,
- const WebVector<mojom::PermissionName>& delegatedPermissions,
const WebVector<WebFeaturePolicyFeature>& allowedFeatures)
: name(name),
scrollingMode(static_cast<ScrollingMode>(scrollingMode)),
@@ -54,7 +51,6 @@ struct WebFrameOwnerProperties {
allowFullscreen(allowFullscreen),
allowPaymentRequest(allowPaymentRequest),
requiredCsp(requiredCsp),
- delegatedPermissions(delegatedPermissions),
allowedFeatures(allowedFeatures) {}
#endif
};
« no previous file with comments | « third_party/WebKit/Source/web/WebLocalFrameImpl.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698