| OLD | NEW |
| 1 /* | 1 /* |
| 2 Copyright (C) 1998 Lars Knoll (knoll@mpi-hd.mpg.de) | 2 Copyright (C) 1998 Lars Knoll (knoll@mpi-hd.mpg.de) |
| 3 Copyright (C) 2001 Dirk Mueller <mueller@kde.org> | 3 Copyright (C) 2001 Dirk Mueller <mueller@kde.org> |
| 4 Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All
rights reserved. | 4 Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All
rights reserved. |
| 5 Copyright (C) 2009 Torch Mobile Inc. http://www.torchmobile.com/ | 5 Copyright (C) 2009 Torch Mobile Inc. http://www.torchmobile.com/ |
| 6 | 6 |
| 7 This library is free software; you can redistribute it and/or | 7 This library is free software; you can redistribute it and/or |
| 8 modify it under the terms of the GNU Library General Public | 8 modify it under the terms of the GNU Library General Public |
| 9 License as published by the Free Software Foundation; either | 9 License as published by the Free Software Foundation; either |
| 10 version 2 of the License, or (at your option) any later version. | 10 version 2 of the License, or (at your option) any later version. |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 71 static PassRefPtr<ResourceFetcher> create(Document* document) { return adopt
Ref(new ResourceFetcher(document)); } | 71 static PassRefPtr<ResourceFetcher> create(Document* document) { return adopt
Ref(new ResourceFetcher(document)); } |
| 72 virtual ~ResourceFetcher(); | 72 virtual ~ResourceFetcher(); |
| 73 | 73 |
| 74 #if !ENABLE(OILPAN) | 74 #if !ENABLE(OILPAN) |
| 75 using RefCounted<ResourceFetcher>::ref; | 75 using RefCounted<ResourceFetcher>::ref; |
| 76 using RefCounted<ResourceFetcher>::deref; | 76 using RefCounted<ResourceFetcher>::deref; |
| 77 #endif | 77 #endif |
| 78 | 78 |
| 79 ResourcePtr<ImageResource> fetchImage(FetchRequest&); | 79 ResourcePtr<ImageResource> fetchImage(FetchRequest&); |
| 80 ResourcePtr<FontResource> fetchFont(FetchRequest&); | 80 ResourcePtr<FontResource> fetchFont(FetchRequest&); |
| 81 ResourcePtr<RawResource> fetchRawResource(FetchRequest&); | |
| 82 ResourcePtr<Resource> fetchLinkResource(Resource::Type, FetchRequest&); | |
| 83 ResourcePtr<RawResource> fetchImport(FetchRequest&); | |
| 84 ResourcePtr<RawResource> fetchMedia(FetchRequest&); | |
| 85 | 81 |
| 86 // Logs an access denied message to the console for the specified URL. | 82 // Logs an access denied message to the console for the specified URL. |
| 87 void printAccessDeniedMessage(const KURL&) const; | 83 void printAccessDeniedMessage(const KURL&) const; |
| 88 | 84 |
| 89 Resource* cachedResource(const KURL&) const; | 85 Resource* cachedResource(const KURL&) const; |
| 90 | 86 |
| 91 typedef HashMap<String, ResourcePtr<Resource> > DocumentResourceMap; | 87 typedef HashMap<String, ResourcePtr<Resource> > DocumentResourceMap; |
| 92 const DocumentResourceMap& allResources() const { return m_documentResources
; } | 88 const DocumentResourceMap& allResources() const { return m_documentResources
; } |
| 93 | 89 |
| 94 bool autoLoadImages() const { return m_autoLoadImages; } | 90 bool autoLoadImages() const { return m_autoLoadImages; } |
| (...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 226 m_loader->m_allowStaleResources = m_previousState; | 222 m_loader->m_allowStaleResources = m_previousState; |
| 227 } | 223 } |
| 228 private: | 224 private: |
| 229 ResourceFetcher* m_loader; | 225 ResourceFetcher* m_loader; |
| 230 bool m_previousState; | 226 bool m_previousState; |
| 231 }; | 227 }; |
| 232 | 228 |
| 233 } // namespace blink | 229 } // namespace blink |
| 234 | 230 |
| 235 #endif | 231 #endif |
| OLD | NEW |