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 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
152 virtual void dispatchWillStartUsingPeerConnectionHandler(WebRTCPeerConnectio
nHandler*) OVERRIDE; | 152 virtual void dispatchWillStartUsingPeerConnectionHandler(WebRTCPeerConnectio
nHandler*) OVERRIDE; |
153 | 153 |
154 virtual void didRequestAutocomplete(HTMLFormElement*) OVERRIDE; | 154 virtual void didRequestAutocomplete(HTMLFormElement*) OVERRIDE; |
155 | 155 |
156 virtual bool allowWebGL(bool enabledPerSettings) OVERRIDE; | 156 virtual bool allowWebGL(bool enabledPerSettings) OVERRIDE; |
157 virtual void didLoseWebGLContext(int arbRobustnessContextLostReason) OVERRID
E; | 157 virtual void didLoseWebGLContext(int arbRobustnessContextLostReason) OVERRID
E; |
158 | 158 |
159 virtual void dispatchWillInsertBody() OVERRIDE; | 159 virtual void dispatchWillInsertBody() OVERRIDE; |
160 | 160 |
161 virtual PassOwnPtr<WebServiceWorkerProvider> createServiceWorkerProvider() O
VERRIDE; | 161 virtual PassOwnPtr<WebServiceWorkerProvider> createServiceWorkerProvider() O
VERRIDE; |
162 virtual bool isControlledByServiceWorker() OVERRIDE; | 162 virtual bool isControlledByServiceWorker(DocumentLoader*) OVERRIDE; |
163 virtual SharedWorkerRepositoryClient* sharedWorkerRepositoryClient() OVERRID
E; | 163 virtual SharedWorkerRepositoryClient* sharedWorkerRepositoryClient() OVERRID
E; |
164 | 164 |
165 virtual PassOwnPtr<WebApplicationCacheHost> createApplicationCacheHost(WebAp
plicationCacheHostClient*) OVERRIDE; | 165 virtual PassOwnPtr<WebApplicationCacheHost> createApplicationCacheHost(WebAp
plicationCacheHostClient*) OVERRIDE; |
166 | 166 |
167 virtual void didStopAllLoaders() OVERRIDE; | 167 virtual void didStopAllLoaders() OVERRIDE; |
168 | 168 |
169 virtual void dispatchDidChangeManifest() OVERRIDE; | 169 virtual void dispatchDidChangeManifest() OVERRIDE; |
170 | 170 |
171 private: | 171 private: |
172 virtual bool isFrameLoaderClientImpl() const OVERRIDE { return true; } | 172 virtual bool isFrameLoaderClientImpl() const OVERRIDE { return true; } |
173 | 173 |
174 PassOwnPtr<WebPluginLoadObserver> pluginLoadObserver(DocumentLoader*); | 174 PassOwnPtr<WebPluginLoadObserver> pluginLoadObserver(DocumentLoader*); |
175 | 175 |
176 // The WebFrame that owns this object and manages its lifetime. Therefore, | 176 // The WebFrame that owns this object and manages its lifetime. Therefore, |
177 // the web frame object is guaranteed to exist. | 177 // the web frame object is guaranteed to exist. |
178 WebLocalFrameImpl* m_webFrame; | 178 WebLocalFrameImpl* m_webFrame; |
179 }; | 179 }; |
180 | 180 |
181 DEFINE_TYPE_CASTS(FrameLoaderClientImpl, FrameLoaderClient, client, client->isFr
ameLoaderClientImpl(), client.isFrameLoaderClientImpl()); | 181 DEFINE_TYPE_CASTS(FrameLoaderClientImpl, FrameLoaderClient, client, client->isFr
ameLoaderClientImpl(), client.isFrameLoaderClientImpl()); |
182 | 182 |
183 } // namespace blink | 183 } // namespace blink |
184 | 184 |
185 #endif | 185 #endif |
OLD | NEW |