| 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 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 177 bool allowAutoplay(bool defaultValue) override; | 177 bool allowAutoplay(bool defaultValue) override; |
| 178 void passiveInsecureContentFound(const KURL&) override; | 178 void passiveInsecureContentFound(const KURL&) override; |
| 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 didEnforceInsecureNavigationsSet(const std::vector<unsigned>&) override; |
| 187 void didUpdateToUniqueOrigin() override; | 188 void didUpdateToUniqueOrigin() override; |
| 188 void didChangeSandboxFlags(Frame* childFrame, SandboxFlags) override; | 189 void didChangeSandboxFlags(Frame* childFrame, SandboxFlags) override; |
| 189 void didSetFeaturePolicyHeader( | 190 void didSetFeaturePolicyHeader( |
| 190 const WebParsedFeaturePolicy& parsedHeader) override; | 191 const WebParsedFeaturePolicy& parsedHeader) override; |
| 191 void didAddContentSecurityPolicy(const String& headerValue, | 192 void didAddContentSecurityPolicy(const String& headerValue, |
| 192 ContentSecurityPolicyHeaderType, | 193 ContentSecurityPolicyHeaderType, |
| 193 ContentSecurityPolicyHeaderSource) override; | 194 ContentSecurityPolicyHeaderSource) override; |
| 194 void didChangeFrameOwnerProperties(HTMLFrameElementBase*) override; | 195 void didChangeFrameOwnerProperties(HTMLFrameElementBase*) override; |
| 195 | 196 |
| 196 void dispatchWillStartUsingPeerConnectionHandler( | 197 void dispatchWillStartUsingPeerConnectionHandler( |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 239 | 240 |
| 240 DEFINE_TYPE_CASTS(FrameLoaderClientImpl, | 241 DEFINE_TYPE_CASTS(FrameLoaderClientImpl, |
| 241 FrameLoaderClient, | 242 FrameLoaderClient, |
| 242 client, | 243 client, |
| 243 client->isFrameLoaderClientImpl(), | 244 client->isFrameLoaderClientImpl(), |
| 244 client.isFrameLoaderClientImpl()); | 245 client.isFrameLoaderClientImpl()); |
| 245 | 246 |
| 246 } // namespace blink | 247 } // namespace blink |
| 247 | 248 |
| 248 #endif | 249 #endif |
| OLD | NEW |