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

Side by Side Diff: third_party/WebKit/Source/web/LocalFrameClientImpl.h

Issue 2797813002: Replicate feature policy container policies. (Closed)
Patch Set: Fix ODR violation Created 3 years, 8 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2009, 2012 Google Inc. All rights reserved. 2 * Copyright (C) 2009, 2012 Google Inc. All rights reserved.
3 * Copyright (C) 2011 Apple Inc. All rights reserved. 3 * Copyright (C) 2011 Apple Inc. All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are 6 * modification, are permitted provided that the following conditions are
7 * met: 7 * met:
8 * 8 *
9 * * Redistributions of source code must retain the above copyright 9 * * Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after
178 bool allowAutoplay(bool defaultValue) override; 178 bool allowAutoplay(bool defaultValue) override;
179 void passiveInsecureContentFound(const KURL&) override; 179 void passiveInsecureContentFound(const KURL&) override;
180 void didNotAllowScript() override; 180 void didNotAllowScript() override;
181 void didNotAllowPlugins() override; 181 void didNotAllowPlugins() override;
182 182
183 WebCookieJar* cookieJar() const override; 183 WebCookieJar* cookieJar() const override;
184 void frameFocused() const override; 184 void frameFocused() const override;
185 void didChangeName(const String&) override; 185 void didChangeName(const String&) override;
186 void didEnforceInsecureRequestPolicy(WebInsecureRequestPolicy) override; 186 void didEnforceInsecureRequestPolicy(WebInsecureRequestPolicy) override;
187 void didUpdateToUniqueOrigin() override; 187 void didUpdateToUniqueOrigin() override;
188 void didChangeSandboxFlags(Frame* childFrame, SandboxFlags) override; 188 void didChangeFramePolicy(Frame* childFrame,
189 SandboxFlags,
190 const WebParsedFeaturePolicy&) override;
189 void didSetFeaturePolicyHeader( 191 void didSetFeaturePolicyHeader(
190 const WebParsedFeaturePolicy& parsedHeader) override; 192 const WebParsedFeaturePolicy& parsedHeader) override;
191 void didAddContentSecurityPolicies( 193 void didAddContentSecurityPolicies(
192 const blink::WebVector<WebContentSecurityPolicy>&) override; 194 const blink::WebVector<WebContentSecurityPolicy>&) override;
193 void didChangeFrameOwnerProperties(HTMLFrameOwnerElement*) override; 195 void didChangeFrameOwnerProperties(HTMLFrameOwnerElement*) override;
194 196
195 void dispatchWillStartUsingPeerConnectionHandler( 197 void dispatchWillStartUsingPeerConnectionHandler(
196 WebRTCPeerConnectionHandler*) override; 198 WebRTCPeerConnectionHandler*) override;
197 199
198 bool allowWebGL(bool enabledPerSettings) override; 200 bool allowWebGL(bool enabledPerSettings) override;
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
240 242
241 DEFINE_TYPE_CASTS(LocalFrameClientImpl, 243 DEFINE_TYPE_CASTS(LocalFrameClientImpl,
242 LocalFrameClient, 244 LocalFrameClient,
243 client, 245 client,
244 client->isLocalFrameClientImpl(), 246 client->isLocalFrameClientImpl(),
245 client.isLocalFrameClientImpl()); 247 client.isLocalFrameClientImpl());
246 248
247 } // namespace blink 249 } // namespace blink
248 250
249 #endif 251 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698