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

Unified Diff: third_party/WebKit/Source/web/RemoteFrameOwner.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/LocalFrameClientImpl.cpp ('k') | third_party/WebKit/Source/web/WebFrame.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/web/RemoteFrameOwner.h
diff --git a/third_party/WebKit/Source/web/RemoteFrameOwner.h b/third_party/WebKit/Source/web/RemoteFrameOwner.h
index 428f5b87f9aca19bc9d3ed9d5559eedc7da15cd9..8d432b9d33916bfb93a65ca779f4225ee70d833b 100644
--- a/third_party/WebKit/Source/web/RemoteFrameOwner.h
+++ b/third_party/WebKit/Source/web/RemoteFrameOwner.h
@@ -48,10 +48,6 @@ class RemoteFrameOwner final
bool allowFullscreen() const override { return m_allowFullscreen; }
bool allowPaymentRequest() const override { return m_allowPaymentRequest; }
AtomicString csp() const override { return m_csp; }
- const WebVector<mojom::blink::PermissionName>& delegatedPermissions()
- const override {
- return m_delegatedPermissions;
- }
const WebVector<WebFeaturePolicyFeature>& allowedFeatures() const override {
return m_allowedFeatures;
}
@@ -69,10 +65,6 @@ class RemoteFrameOwner final
m_allowPaymentRequest = allowPaymentRequest;
}
void setCsp(const WebString& csp) { m_csp = csp; }
- void setDelegatedpermissions(
- const WebVector<mojom::blink::PermissionName>& delegatedPermissions) {
- m_delegatedPermissions = delegatedPermissions;
- }
void setAllowedFeatures(
const WebVector<WebFeaturePolicyFeature>& allowedFeatures) {
m_allowedFeatures = allowedFeatures;
@@ -97,7 +89,6 @@ class RemoteFrameOwner final
bool m_allowFullscreen;
bool m_allowPaymentRequest;
WebString m_csp;
- WebVector<mojom::blink::PermissionName> m_delegatedPermissions;
WebVector<WebFeaturePolicyFeature> m_allowedFeatures;
};
« no previous file with comments | « third_party/WebKit/Source/web/LocalFrameClientImpl.cpp ('k') | third_party/WebKit/Source/web/WebFrame.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698