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