| 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 bool allowAutoplay(bool defaultValue) override; | 178 bool allowAutoplay(bool defaultValue) override; |
| 179 void passiveInsecureContentFound(const KURL&) override; | 179 void passiveInsecureContentFound(const KURL&) override; |
| 180 void didNotAllowScript() override; | 180 void didNotAllowScript() override; |
| 181 void didNotAllowPlugins() override; | 181 void didNotAllowPlugins() 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&) override; | 185 void didChangeName(const String&) 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 didChangeFramePolicy(Frame* childFrame, |
| 189 SandboxFlags, |
| 190 const WebParsedFeaturePolicy&) override; |
| 189 void didSetFeaturePolicyHeader( | 191 void didSetFeaturePolicyHeader( |
| 190 const WebParsedFeaturePolicy& parsedHeader) override; | 192 const WebParsedFeaturePolicy& parsedHeader) override; |
| 191 void didAddContentSecurityPolicies( | 193 void didAddContentSecurityPolicies( |
| 192 const blink::WebVector<WebContentSecurityPolicy>&) override; | 194 const blink::WebVector<WebContentSecurityPolicy>&) override; |
| 193 void didChangeFrameOwnerProperties(HTMLFrameOwnerElement*) override; | 195 void didChangeFrameOwnerProperties(HTMLFrameOwnerElement*) override; |
| 194 | 196 |
| 195 void dispatchWillStartUsingPeerConnectionHandler( | 197 void dispatchWillStartUsingPeerConnectionHandler( |
| 196 WebRTCPeerConnectionHandler*) override; | 198 WebRTCPeerConnectionHandler*) override; |
| 197 | 199 |
| 198 bool allowWebGL(bool enabledPerSettings) override; | 200 bool allowWebGL(bool enabledPerSettings) override; |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 240 | 242 |
| 241 DEFINE_TYPE_CASTS(LocalFrameClientImpl, | 243 DEFINE_TYPE_CASTS(LocalFrameClientImpl, |
| 242 LocalFrameClient, | 244 LocalFrameClient, |
| 243 client, | 245 client, |
| 244 client->isLocalFrameClientImpl(), | 246 client->isLocalFrameClientImpl(), |
| 245 client.isLocalFrameClientImpl()); | 247 client.isLocalFrameClientImpl()); |
| 246 | 248 |
| 247 } // namespace blink | 249 } // namespace blink |
| 248 | 250 |
| 249 #endif | 251 #endif |
| OLD | NEW |