| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2008, 2009 Apple Inc. All Rights Reserved. | 2 * Copyright (C) 2008, 2009 Apple Inc. All Rights Reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 21 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 24 */ | 24 */ |
| 25 | 25 |
| 26 #ifndef ApplicationCache_h | 26 #ifndef ApplicationCache_h |
| 27 #define ApplicationCache_h | 27 #define ApplicationCache_h |
| 28 | 28 |
| 29 #include "bindings/v8/ScriptWrappable.h" | 29 #include "bindings/v8/ScriptWrappable.h" |
| 30 #include "core/events/EventTarget.h" | 30 #include "core/events/EventTarget.h" |
| 31 #include "core/events/ThreadLocalEventNames.h" | |
| 32 #include "core/loader/appcache/ApplicationCacheHost.h" | 31 #include "core/loader/appcache/ApplicationCacheHost.h" |
| 33 #include "core/frame/DOMWindowProperty.h" | 32 #include "core/frame/DOMWindowProperty.h" |
| 34 #include "heap/Handle.h" | 33 #include "heap/Handle.h" |
| 35 #include "wtf/Forward.h" | 34 #include "wtf/Forward.h" |
| 36 #include "wtf/PassRefPtr.h" | 35 #include "wtf/PassRefPtr.h" |
| 37 #include "wtf/RefCounted.h" | 36 #include "wtf/RefCounted.h" |
| 38 | 37 |
| 39 namespace WebCore { | 38 namespace WebCore { |
| 40 | 39 |
| 41 class ExceptionState; | 40 class ExceptionState; |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 | 77 |
| 79 private: | 78 private: |
| 80 explicit ApplicationCache(LocalFrame*); | 79 explicit ApplicationCache(LocalFrame*); |
| 81 | 80 |
| 82 ApplicationCacheHost* applicationCacheHost() const; | 81 ApplicationCacheHost* applicationCacheHost() const; |
| 83 }; | 82 }; |
| 84 | 83 |
| 85 } // namespace WebCore | 84 } // namespace WebCore |
| 86 | 85 |
| 87 #endif // ApplicationCache_h | 86 #endif // ApplicationCache_h |
| OLD | NEW |