OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights
reserved. | 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights
reserved. |
3 * Copyright (C) 2012 Google Inc. All rights reserved. | 3 * Copyright (C) 2012 Google 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 | 6 * modification, are permitted provided that the following conditions |
7 * are met: | 7 * are met: |
8 * | 8 * |
9 * 1. Redistributions of source code must retain the above copyright | 9 * 1. 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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
43 namespace v8 { | 43 namespace v8 { |
44 class Context; | 44 class Context; |
45 template<class T> class Handle; | 45 template<class T> class Handle; |
46 } | 46 } |
47 | 47 |
48 namespace blink { | 48 namespace blink { |
49 class WebCookieJar; | 49 class WebCookieJar; |
50 class WebRTCPeerConnectionHandler; | 50 class WebRTCPeerConnectionHandler; |
51 class WebServiceWorkerProvider; | 51 class WebServiceWorkerProvider; |
52 class WebServiceWorkerProviderClient; | 52 class WebServiceWorkerProviderClient; |
| 53 class WebApplicationCacheHost; |
| 54 class WebApplicationCacheHostClient; |
53 } | 55 } |
54 | 56 |
55 namespace WebCore { | 57 namespace WebCore { |
56 | 58 |
57 class Color; | 59 class Color; |
58 class DOMWindowExtension; | 60 class DOMWindowExtension; |
59 class DOMWrapperWorld; | 61 class DOMWrapperWorld; |
60 class DocumentLoader; | 62 class DocumentLoader; |
61 class Element; | 63 class Element; |
62 class FetchRequest; | 64 class FetchRequest; |
(...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
216 | 218 |
217 // If an HTML document is being loaded, informs the embedder that the do
cument will have its <body> attached soon. | 219 // If an HTML document is being loaded, informs the embedder that the do
cument will have its <body> attached soon. |
218 virtual void dispatchWillInsertBody() { } | 220 virtual void dispatchWillInsertBody() { } |
219 | 221 |
220 virtual void dispatchDidChangeResourcePriority(unsigned long /*identifie
r*/, ResourceLoadPriority) { } | 222 virtual void dispatchDidChangeResourcePriority(unsigned long /*identifie
r*/, ResourceLoadPriority) { } |
221 | 223 |
222 virtual PassOwnPtr<blink::WebServiceWorkerProvider> createServiceWorkerP
rovider(PassOwnPtr<blink::WebServiceWorkerProviderClient>) = 0; | 224 virtual PassOwnPtr<blink::WebServiceWorkerProvider> createServiceWorkerP
rovider(PassOwnPtr<blink::WebServiceWorkerProviderClient>) = 0; |
223 | 225 |
224 virtual SharedWorkerRepositoryClient* sharedWorkerRepositoryClient() { r
eturn 0; } | 226 virtual SharedWorkerRepositoryClient* sharedWorkerRepositoryClient() { r
eturn 0; } |
225 | 227 |
| 228 virtual PassOwnPtr<blink::WebApplicationCacheHost> createApplicationCach
eHost(blink::WebApplicationCacheHostClient*) = 0; |
| 229 |
226 virtual void didStopAllLoaders() { } | 230 virtual void didStopAllLoaders() { } |
227 | 231 |
228 virtual bool isFrameLoaderClientImpl() const { return false; } | 232 virtual bool isFrameLoaderClientImpl() const { return false; } |
229 }; | 233 }; |
230 | 234 |
231 } // namespace WebCore | 235 } // namespace WebCore |
232 | 236 |
233 #endif // FrameLoaderClient_h | 237 #endif // FrameLoaderClient_h |
OLD | NEW |