| 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 "FrameLoaderTypes.h" | 33 #include "FrameLoaderTypes.h" |
| 34 #include "IconURL.h" | 34 #include "IconURL.h" |
| 35 #include "LayoutMilestones.h" | 35 #include "LayoutMilestones.h" |
| 36 #include "ResourceLoadPriority.h" | 36 #include "core/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 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 246 | 246 |
| 247 // If an HTML document is being loaded, informs the embedder that the do
cument will have its <body> attached soon. | 247 // If an HTML document is being loaded, informs the embedder that the do
cument will have its <body> attached soon. |
| 248 virtual void dispatchWillInsertBody() { } | 248 virtual void dispatchWillInsertBody() { } |
| 249 | 249 |
| 250 virtual void dispatchDidChangeResourcePriority(unsigned long /*identifie
r*/, ResourceLoadPriority) { } | 250 virtual void dispatchDidChangeResourcePriority(unsigned long /*identifie
r*/, ResourceLoadPriority) { } |
| 251 }; | 251 }; |
| 252 | 252 |
| 253 } // namespace WebCore | 253 } // namespace WebCore |
| 254 | 254 |
| 255 #endif // FrameLoaderClient_h | 255 #endif // FrameLoaderClient_h |
| OLD | NEW |