| 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 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 148 | 148 |
| 149 WebCookieJar* cookieJar() const override; | 149 WebCookieJar* cookieJar() const override; |
| 150 void frameFocused() const override; | 150 void frameFocused() const override; |
| 151 void didChangeName(const String& name, const String& uniqueName) override; | 151 void didChangeName(const String& name, const String& uniqueName) override; |
| 152 void didEnforceInsecureRequestPolicy(WebInsecureRequestPolicy) override; | 152 void didEnforceInsecureRequestPolicy(WebInsecureRequestPolicy) override; |
| 153 void didUpdateToUniqueOrigin() override; | 153 void didUpdateToUniqueOrigin() override; |
| 154 void didChangeSandboxFlags(Frame* childFrame, SandboxFlags) override; | 154 void didChangeSandboxFlags(Frame* childFrame, SandboxFlags) override; |
| 155 void didAddContentSecurityPolicy(const String& headerValue, ContentSecurityP
olicyHeaderType, ContentSecurityPolicyHeaderSource) override; | 155 void didAddContentSecurityPolicy(const String& headerValue, ContentSecurityP
olicyHeaderType, ContentSecurityPolicyHeaderSource) override; |
| 156 void didChangeFrameOwnerProperties(HTMLFrameElementBase*) override; | 156 void didChangeFrameOwnerProperties(HTMLFrameElementBase*) override; |
| 157 | 157 |
| 158 void dispatchWillOpenWebSocket(WebSocketHandle*) override; |
| 159 |
| 158 void dispatchWillStartUsingPeerConnectionHandler(WebRTCPeerConnectionHandler
*) override; | 160 void dispatchWillStartUsingPeerConnectionHandler(WebRTCPeerConnectionHandler
*) override; |
| 159 | 161 |
| 160 bool allowWebGL(bool enabledPerSettings) override; | 162 bool allowWebGL(bool enabledPerSettings) override; |
| 161 | 163 |
| 162 void dispatchWillInsertBody() override; | 164 void dispatchWillInsertBody() override; |
| 163 | 165 |
| 164 std::unique_ptr<WebServiceWorkerProvider> createServiceWorkerProvider() over
ride; | 166 std::unique_ptr<WebServiceWorkerProvider> createServiceWorkerProvider() over
ride; |
| 165 bool isControlledByServiceWorker(DocumentLoader&) override; | 167 bool isControlledByServiceWorker(DocumentLoader&) override; |
| 166 int64_t serviceWorkerID(DocumentLoader&) override; | 168 int64_t serviceWorkerID(DocumentLoader&) override; |
| 167 SharedWorkerRepositoryClient* sharedWorkerRepositoryClient() override; | 169 SharedWorkerRepositoryClient* sharedWorkerRepositoryClient() override; |
| (...skipping 25 matching lines...) Expand all Loading... |
| 193 Member<WebLocalFrameImpl> m_webFrame; | 195 Member<WebLocalFrameImpl> m_webFrame; |
| 194 | 196 |
| 195 String m_userAgent; | 197 String m_userAgent; |
| 196 }; | 198 }; |
| 197 | 199 |
| 198 DEFINE_TYPE_CASTS(FrameLoaderClientImpl, FrameLoaderClient, client, client->isFr
ameLoaderClientImpl(), client.isFrameLoaderClientImpl()); | 200 DEFINE_TYPE_CASTS(FrameLoaderClientImpl, FrameLoaderClient, client, client->isFr
ameLoaderClientImpl(), client.isFrameLoaderClientImpl()); |
| 199 | 201 |
| 200 } // namespace blink | 202 } // namespace blink |
| 201 | 203 |
| 202 #endif | 204 #endif |
| OLD | NEW |