| OLD | NEW |
| 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 Loading... |
| 178 void didNotAllowScript() override; | 178 void didNotAllowScript() override; |
| 179 void didNotAllowPlugins() override; | 179 void didNotAllowPlugins() override; |
| 180 void didUseKeygen() override; | 180 void didUseKeygen() override; |
| 181 | 181 |
| 182 WebCookieJar* cookieJar() const override; | 182 WebCookieJar* cookieJar() const override; |
| 183 void frameFocused() const override; | 183 void frameFocused() const override; |
| 184 void didChangeName(const String& name, const String& uniqueName) override; | 184 void didChangeName(const String& name, const String& uniqueName) override; |
| 185 void didEnforceInsecureRequestPolicy(WebInsecureRequestPolicy) override; | 185 void didEnforceInsecureRequestPolicy(WebInsecureRequestPolicy) override; |
| 186 void didUpdateToUniqueOrigin() override; | 186 void didUpdateToUniqueOrigin() override; |
| 187 void didChangeSandboxFlags(Frame* childFrame, SandboxFlags) override; | 187 void didChangeSandboxFlags(Frame* childFrame, SandboxFlags) override; |
| 188 void didSetFeaturePolicyHeader(const String& headerValue) override; | 188 void didSetFeaturePolicyHeader( |
| 189 const WebVector<WebFeaturePolicy::ParsedWhitelist>&) override; |
| 189 void didAddContentSecurityPolicy(const String& headerValue, | 190 void didAddContentSecurityPolicy(const String& headerValue, |
| 190 ContentSecurityPolicyHeaderType, | 191 ContentSecurityPolicyHeaderType, |
| 191 ContentSecurityPolicyHeaderSource) override; | 192 ContentSecurityPolicyHeaderSource) override; |
| 192 void didChangeFrameOwnerProperties(HTMLFrameElementBase*) override; | 193 void didChangeFrameOwnerProperties(HTMLFrameElementBase*) override; |
| 193 | 194 |
| 194 void dispatchWillStartUsingPeerConnectionHandler( | 195 void dispatchWillStartUsingPeerConnectionHandler( |
| 195 WebRTCPeerConnectionHandler*) override; | 196 WebRTCPeerConnectionHandler*) override; |
| 196 | 197 |
| 197 bool allowWebGL(bool enabledPerSettings) override; | 198 bool allowWebGL(bool enabledPerSettings) override; |
| 198 | 199 |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 237 | 238 |
| 238 DEFINE_TYPE_CASTS(FrameLoaderClientImpl, | 239 DEFINE_TYPE_CASTS(FrameLoaderClientImpl, |
| 239 FrameLoaderClient, | 240 FrameLoaderClient, |
| 240 client, | 241 client, |
| 241 client->isFrameLoaderClientImpl(), | 242 client->isFrameLoaderClientImpl(), |
| 242 client.isFrameLoaderClientImpl()); | 243 client.isFrameLoaderClientImpl()); |
| 243 | 244 |
| 244 } // namespace blink | 245 } // namespace blink |
| 245 | 246 |
| 246 #endif | 247 #endif |
| OLD | NEW |