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