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 15 matching lines...) Expand all Loading... |
26 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF | 26 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
27 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 27 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
28 */ | 28 */ |
29 | 29 |
30 #ifndef FrameLoaderClient_h | 30 #ifndef FrameLoaderClient_h |
31 #define FrameLoaderClient_h | 31 #define FrameLoaderClient_h |
32 | 32 |
33 #include "core/dom/IconURL.h" | 33 #include "core/dom/IconURL.h" |
34 #include "core/loader/FrameLoaderTypes.h" | 34 #include "core/loader/FrameLoaderTypes.h" |
35 #include "core/loader/NavigationPolicy.h" | 35 #include "core/loader/NavigationPolicy.h" |
36 #include "core/platform/network/ResourceLoadPriority.h" | 36 #include "platform/network/ResourceLoadPriority.h" |
37 #include "wtf/Forward.h" | 37 #include "wtf/Forward.h" |
38 #include "wtf/Vector.h" | 38 #include "wtf/Vector.h" |
39 | 39 |
40 typedef class _jobject* jobject; | 40 typedef class _jobject* jobject; |
41 | 41 |
42 namespace v8 { | 42 namespace v8 { |
43 class Context; | 43 class Context; |
44 template<class T> class Handle; | 44 template<class T> class Handle; |
45 } | 45 } |
46 | 46 |
(...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
227 virtual PassOwnPtr<WebKit::WebServiceWorkerProvider> createServiceWorker
Provider(PassOwnPtr<WebKit::WebServiceWorkerProviderClient>) = 0; | 227 virtual PassOwnPtr<WebKit::WebServiceWorkerProvider> createServiceWorker
Provider(PassOwnPtr<WebKit::WebServiceWorkerProviderClient>) = 0; |
228 | 228 |
229 virtual void didStopAllLoaders() { } | 229 virtual void didStopAllLoaders() { } |
230 | 230 |
231 virtual bool isFrameLoaderClientImpl() const { return false; } | 231 virtual bool isFrameLoaderClientImpl() const { return false; } |
232 }; | 232 }; |
233 | 233 |
234 } // namespace WebCore | 234 } // namespace WebCore |
235 | 235 |
236 #endif // FrameLoaderClient_h | 236 #endif // FrameLoaderClient_h |
OLD | NEW |