OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2010 Google, Inc. All Rights Reserved. | 2 * Copyright (C) 2010 Google, 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 PendingScript_h | 26 #ifndef PendingScript_h |
27 #define PendingScript_h | 27 #define PendingScript_h |
28 | 28 |
29 #include "core/loader/cache/CachedResourceClient.h" | 29 #include "core/loader/cache/CachedResourceClient.h" |
30 #include "core/loader/cache/CachedResourceHandle.h" | 30 #include "core/loader/cache/CachedResourceHandle.h" |
31 #include <wtf/PassRefPtr.h> | 31 #include "wtf/PassRefPtr.h" |
32 #include <wtf/RefPtr.h> | 32 #include "wtf/RefPtr.h" |
33 #include <wtf/text/TextPosition.h> | 33 #include "wtf/text/TextPosition.h" |
34 | 34 |
35 namespace WebCore { | 35 namespace WebCore { |
36 | 36 |
37 class CachedScript; | 37 class CachedScript; |
38 class Element; | 38 class Element; |
39 | 39 |
40 // A container for an external script which may be loaded and executed. | 40 // A container for an external script which may be loaded and executed. |
41 // | 41 // |
42 // A CachedResourceHandle alone does not prevent the underlying CachedResource | 42 // A CachedResourceHandle alone does not prevent the underlying CachedResource |
43 // from purging its data buffer. This class holds a dummy client open for its | 43 // from purging its data buffer. This class holds a dummy client open for its |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
99 private: | 99 private: |
100 bool m_watchingForLoad; | 100 bool m_watchingForLoad; |
101 RefPtr<Element> m_element; | 101 RefPtr<Element> m_element; |
102 TextPosition m_startingPosition; // Only used for inline script tags. | 102 TextPosition m_startingPosition; // Only used for inline script tags. |
103 CachedResourceHandle<CachedScript> m_cachedScript; | 103 CachedResourceHandle<CachedScript> m_cachedScript; |
104 }; | 104 }; |
105 | 105 |
106 } | 106 } |
107 | 107 |
108 #endif | 108 #endif |
OLD | NEW |