| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2013 Google Inc. All rights reserved. | 2 * Copyright (C) 2013 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 are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 29 */ | 29 */ |
| 30 | 30 |
| 31 #include "core/fetch/ResourceLoaderSet.h" | 31 #include "core/fetch/ResourceLoaderSet.h" |
| 32 | 32 |
| 33 #include "wtf/Vector.h" | 33 #include "wtf/Vector.h" |
| 34 | 34 |
| 35 namespace blink { | 35 namespace blink { |
| 36 | 36 |
| 37 ResourceLoaderSet* ResourceLoaderSet::create() | |
| 38 { | |
| 39 return new ResourceLoaderSet; | |
| 40 } | |
| 41 | |
| 42 DEFINE_TRACE(ResourceLoaderSet) | 37 DEFINE_TRACE(ResourceLoaderSet) |
| 43 { | 38 { |
| 44 visitor->trace(m_set); | 39 visitor->trace(m_set); |
| 45 } | 40 } |
| 46 | 41 |
| 47 void ResourceLoaderSet::cancelAll() | 42 void ResourceLoaderSet::cancelAll() |
| 48 { | 43 { |
| 49 HeapVector<Member<ResourceLoader>> loadersCopy; | 44 HeapVector<Member<ResourceLoader>> loadersCopy; |
| 50 copyToVector(m_set, loadersCopy); | 45 copyToVector(m_set, loadersCopy); |
| 51 for (const auto& loader : loadersCopy) { | 46 for (const auto& loader : loadersCopy) { |
| 52 // cancelAll() can reenter. Don't cancel the same ResourceLoader twice. | 47 // cancelAll() can reenter. Don't cancel the same ResourceLoader twice. |
| 53 if (m_set.contains(loader)) | 48 if (m_set.contains(loader)) |
| 54 loader->cancel(); | 49 loader->cancel(); |
| 55 } | 50 } |
| 56 } | 51 } |
| 57 | 52 |
| 58 void ResourceLoaderSet::setAllDefersLoading(bool defers) | 53 void ResourceLoaderSet::setAllDefersLoading(bool defers) |
| 59 { | 54 { |
| 60 HeapVector<Member<ResourceLoader>> loadersCopy; | 55 HeapVector<Member<ResourceLoader>> loadersCopy; |
| 61 copyToVector(m_set, loadersCopy); | 56 copyToVector(m_set, loadersCopy); |
| 62 for (const auto& loader : loadersCopy) | 57 for (const auto& loader : loadersCopy) |
| 63 loader->setDefersLoading(defers); | 58 loader->setDefersLoading(defers); |
| 64 } | 59 } |
| 65 | 60 |
| 66 } // namespace blink | 61 } // namespace blink |
| OLD | NEW |