| 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 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 143 virtual bool canAccessResource(Resource*, SecurityOrigin*, const KURL&, Acce
ssControlLoggingDecision) const override; | 143 virtual bool canAccessResource(Resource*, SecurityOrigin*, const KURL&, Acce
ssControlLoggingDecision) const override; |
| 144 virtual bool isControlledByServiceWorker() const override; | 144 virtual bool isControlledByServiceWorker() const override; |
| 145 | 145 |
| 146 #if !ENABLE(OILPAN) | 146 #if !ENABLE(OILPAN) |
| 147 virtual void refResourceLoaderHost() override; | 147 virtual void refResourceLoaderHost() override; |
| 148 virtual void derefResourceLoaderHost() override; | 148 virtual void derefResourceLoaderHost() override; |
| 149 #endif | 149 #endif |
| 150 | 150 |
| 151 void acceptDataFromThreadedReceiver(unsigned long identifier, const char* da
ta, int dataLength, int encodedDataLength); | 151 void acceptDataFromThreadedReceiver(unsigned long identifier, const char* da
ta, int dataLength, int encodedDataLength); |
| 152 | 152 |
| 153 static ResourceLoadPriority loadPriority(Resource::Type, const FetchRequest&
); |
| 154 |
| 153 enum ResourceLoadStartType { | 155 enum ResourceLoadStartType { |
| 154 ResourceLoadingFromNetwork, | 156 ResourceLoadingFromNetwork, |
| 155 ResourceLoadingFromCache | 157 ResourceLoadingFromCache |
| 156 }; | 158 }; |
| 157 void requestLoadStarted(Resource*, const FetchRequest&, ResourceLoadStartTyp
e); | 159 void requestLoadStarted(Resource*, const FetchRequest&, ResourceLoadStartTyp
e); |
| 158 static const ResourceLoaderOptions& defaultResourceOptions(); | 160 static const ResourceLoaderOptions& defaultResourceOptions(); |
| 159 | 161 |
| 160 String getCacheIdentifier() const; | 162 String getCacheIdentifier() const; |
| 161 | 163 |
| 162 virtual ResourceLoaderHost::LoaderHostType objectType() const override { ret
urn ResourceFetcherType; }; | 164 virtual ResourceLoaderHost::LoaderHostType objectType() const override { ret
urn ResourceFetcherType; }; |
| (...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 255 m_loader->m_allowStaleResources = m_previousState; | 257 m_loader->m_allowStaleResources = m_previousState; |
| 256 } | 258 } |
| 257 private: | 259 private: |
| 258 RawPtrWillBeMember<ResourceFetcher> m_loader; | 260 RawPtrWillBeMember<ResourceFetcher> m_loader; |
| 259 bool m_previousState; | 261 bool m_previousState; |
| 260 }; | 262 }; |
| 261 | 263 |
| 262 } // namespace blink | 264 } // namespace blink |
| 263 | 265 |
| 264 #endif // ResourceFetcher_h | 266 #endif // ResourceFetcher_h |
| OLD | NEW |