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

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

Issue 2520223002: Replicate a parsed feature policy representation so it doesn't need to be parsed in the browser pro… (Closed)
Patch Set: Replicate a parsed feature policy representation so it doesn't need to be parsed in the browser pro… Created 4 years 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 168 matching lines...) Expand 10 before | Expand all | Expand 10 after
179 void didNotAllowScript() override; 179 void didNotAllowScript() override;
180 void didNotAllowPlugins() override; 180 void didNotAllowPlugins() override;
181 void didUseKeygen() override; 181 void didUseKeygen() 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& name, const String& uniqueName) override; 185 void didChangeName(const String& name, const String& uniqueName) 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 didChangeSandboxFlags(Frame* childFrame, SandboxFlags) override;
189 void didSetFeaturePolicyHeader(const String& headerValue) override; 189 void didSetFeaturePolicyHeader(
190 const WebParsedFeaturePolicy& parsedHeader) override;
190 void didAddContentSecurityPolicy(const String& headerValue, 191 void didAddContentSecurityPolicy(const String& headerValue,
191 ContentSecurityPolicyHeaderType, 192 ContentSecurityPolicyHeaderType,
192 ContentSecurityPolicyHeaderSource) override; 193 ContentSecurityPolicyHeaderSource) override;
193 void didChangeFrameOwnerProperties(HTMLFrameElementBase*) override; 194 void didChangeFrameOwnerProperties(HTMLFrameElementBase*) override;
194 195
195 void dispatchWillStartUsingPeerConnectionHandler( 196 void dispatchWillStartUsingPeerConnectionHandler(
196 WebRTCPeerConnectionHandler*) override; 197 WebRTCPeerConnectionHandler*) override;
197 198
198 bool allowWebGL(bool enabledPerSettings) override; 199 bool allowWebGL(bool enabledPerSettings) override;
199 200
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
238 239
239 DEFINE_TYPE_CASTS(FrameLoaderClientImpl, 240 DEFINE_TYPE_CASTS(FrameLoaderClientImpl,
240 FrameLoaderClient, 241 FrameLoaderClient,
241 client, 242 client,
242 client->isFrameLoaderClientImpl(), 243 client->isFrameLoaderClientImpl(),
243 client.isFrameLoaderClientImpl()); 244 client.isFrameLoaderClientImpl());
244 245
245 } // namespace blink 246 } // namespace blink
246 247
247 #endif 248 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698