| 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 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 WebParsedFeaturePolicyHeader& parsedHeader) override; |
| 186 void didAddContentSecurityPolicy(const String& headerValue, | 186 void didAddContentSecurityPolicy(const String& headerValue, |
| 187 ContentSecurityPolicyHeaderType, | 187 ContentSecurityPolicyHeaderType, |
| 188 ContentSecurityPolicyHeaderSource) override; | 188 ContentSecurityPolicyHeaderSource) override; |
| 189 void didChangeFrameOwnerProperties(HTMLFrameOwnerElement*) override; | 189 void didChangeFrameOwnerProperties(HTMLFrameElementBase*) override; |
| 190 | 190 |
| 191 void dispatchWillStartUsingPeerConnectionHandler( | 191 void dispatchWillStartUsingPeerConnectionHandler( |
| 192 WebRTCPeerConnectionHandler*) override; | 192 WebRTCPeerConnectionHandler*) override; |
| 193 | 193 |
| 194 bool allowWebGL(bool enabledPerSettings) override; | 194 bool allowWebGL(bool enabledPerSettings) override; |
| 195 | 195 |
| 196 void dispatchWillInsertBody() override; | 196 void dispatchWillInsertBody() override; |
| 197 | 197 |
| 198 std::unique_ptr<WebServiceWorkerProvider> createServiceWorkerProvider() | 198 std::unique_ptr<WebServiceWorkerProvider> createServiceWorkerProvider() |
| 199 override; | 199 override; |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 236 | 236 |
| 237 DEFINE_TYPE_CASTS(FrameLoaderClientImpl, | 237 DEFINE_TYPE_CASTS(FrameLoaderClientImpl, |
| 238 FrameLoaderClient, | 238 FrameLoaderClient, |
| 239 client, | 239 client, |
| 240 client->isFrameLoaderClientImpl(), | 240 client->isFrameLoaderClientImpl(), |
| 241 client.isFrameLoaderClientImpl()); | 241 client.isFrameLoaderClientImpl()); |
| 242 | 242 |
| 243 } // namespace blink | 243 } // namespace blink |
| 244 | 244 |
| 245 #endif | 245 #endif |
| OLD | NEW |