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

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

Issue 2739203002: Initial Implementation of Iframe Attribute for Feature Policy (Part 3) (Closed)
Patch Set: 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 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 164 matching lines...) Expand 10 before | Expand all | Expand 10 after
175 void didNotAllowScript() override; 175 void didNotAllowScript() override;
176 void didNotAllowPlugins() override; 176 void didNotAllowPlugins() override;
177 177
178 WebCookieJar* cookieJar() const override; 178 WebCookieJar* cookieJar() const override;
179 void frameFocused() const override; 179 void frameFocused() const override;
180 void didChangeName(const String& name, const String& uniqueName) override; 180 void didChangeName(const String& name, const String& uniqueName) override;
181 void didEnforceInsecureRequestPolicy(WebInsecureRequestPolicy) override; 181 void didEnforceInsecureRequestPolicy(WebInsecureRequestPolicy) override;
182 void didUpdateToUniqueOrigin() override; 182 void didUpdateToUniqueOrigin() override;
183 void didChangeSandboxFlags(Frame* childFrame, SandboxFlags) override; 183 void didChangeSandboxFlags(Frame* childFrame, SandboxFlags) override;
184 void didSetFeaturePolicyHeader( 184 void didSetFeaturePolicyHeader(
185 const WebParsedFeaturePolicyHeader& parsedHeader) override; 185 const WebParsedFeaturePolicy& parsedHeader) override;
186 void didAddContentSecurityPolicy( 186 void didAddContentSecurityPolicy(
187 const String& headerValue, 187 const String& headerValue,
188 ContentSecurityPolicyHeaderType, 188 ContentSecurityPolicyHeaderType,
189 ContentSecurityPolicyHeaderSource, 189 ContentSecurityPolicyHeaderSource,
190 const std::vector<WebContentSecurityPolicyPolicy>&) override; 190 const std::vector<WebContentSecurityPolicyPolicy>&) override;
191 void didChangeFrameOwnerProperties(HTMLFrameElementBase*) override; 191 void didChangeFrameOwnerProperties(HTMLFrameElementBase*) override;
192 192
193 void dispatchWillStartUsingPeerConnectionHandler( 193 void dispatchWillStartUsingPeerConnectionHandler(
194 WebRTCPeerConnectionHandler*) override; 194 WebRTCPeerConnectionHandler*) override;
195 195
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
238 238
239 DEFINE_TYPE_CASTS(LocalFrameClientImpl, 239 DEFINE_TYPE_CASTS(LocalFrameClientImpl,
240 LocalFrameClient, 240 LocalFrameClient,
241 client, 241 client,
242 client->isLocalFrameClientImpl(), 242 client->isLocalFrameClientImpl(),
243 client.isLocalFrameClientImpl()); 243 client.isLocalFrameClientImpl());
244 244
245 } // namespace blink 245 } // namespace blink
246 246
247 #endif 247 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698