| 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 173 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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( | 189 void didSetFeaturePolicyHeader( |
| 190 const WebParsedFeaturePolicy& parsedHeader) override; | 190 const WebParsedFeaturePolicy& parsedHeader) override; |
| 191 void didAddContentSecurityPolicy(const String& headerValue, | 191 void didAddContentSecurityPolicy(const String& headerValue, |
| 192 ContentSecurityPolicyHeaderType, | 192 ContentSecurityPolicyHeaderType, |
| 193 ContentSecurityPolicyHeaderSource) override; | 193 ContentSecurityPolicyHeaderSource) override; |
| 194 void didChangeFrameOwnerProperties(HTMLFrameElementBase*) override; | 194 void didChangeFrameOwnerProperties(HTMLFrameOwnerElement*) override; |
| 195 | 195 |
| 196 void dispatchWillStartUsingPeerConnectionHandler( | 196 void dispatchWillStartUsingPeerConnectionHandler( |
| 197 WebRTCPeerConnectionHandler*) override; | 197 WebRTCPeerConnectionHandler*) override; |
| 198 | 198 |
| 199 bool allowWebGL(bool enabledPerSettings) override; | 199 bool allowWebGL(bool enabledPerSettings) override; |
| 200 | 200 |
| 201 void dispatchWillInsertBody() override; | 201 void dispatchWillInsertBody() override; |
| 202 | 202 |
| 203 std::unique_ptr<WebServiceWorkerProvider> createServiceWorkerProvider() | 203 std::unique_ptr<WebServiceWorkerProvider> createServiceWorkerProvider() |
| 204 override; | 204 override; |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 239 | 239 |
| 240 DEFINE_TYPE_CASTS(FrameLoaderClientImpl, | 240 DEFINE_TYPE_CASTS(FrameLoaderClientImpl, |
| 241 FrameLoaderClient, | 241 FrameLoaderClient, |
| 242 client, | 242 client, |
| 243 client->isFrameLoaderClientImpl(), | 243 client->isFrameLoaderClientImpl(), |
| 244 client.isFrameLoaderClientImpl()); | 244 client.isFrameLoaderClientImpl()); |
| 245 | 245 |
| 246 } // namespace blink | 246 } // namespace blink |
| 247 | 247 |
| 248 #endif | 248 #endif |
| OLD | NEW |