| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2008 Apple Inc. All Rights Reserved. | 2 * Copyright (C) 2008 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 12 matching lines...) Expand all Loading... |
| 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 | 26 |
| 27 #ifndef CrossOriginPreflightResultCache_h | 27 #ifndef CrossOriginPreflightResultCache_h |
| 28 #define CrossOriginPreflightResultCache_h | 28 #define CrossOriginPreflightResultCache_h |
| 29 | 29 |
| 30 #include <memory> | 30 #include <memory> |
| 31 #include "platform/loader/fetch/ResourceLoaderOptions.h" | 31 #include "platform/loader/fetch/ResourceLoaderOptions.h" |
| 32 #include "platform/weborigin/KURLHash.h" | 32 #include "platform/weborigin/KURLHash.h" |
| 33 #include "wtf/HashMap.h" | 33 #include "platform/wtf/HashMap.h" |
| 34 #include "wtf/HashSet.h" | 34 #include "platform/wtf/HashSet.h" |
| 35 #include "wtf/text/StringHash.h" | 35 #include "platform/wtf/text/StringHash.h" |
| 36 | 36 |
| 37 namespace blink { | 37 namespace blink { |
| 38 | 38 |
| 39 class HTTPHeaderMap; | 39 class HTTPHeaderMap; |
| 40 class ResourceResponse; | 40 class ResourceResponse; |
| 41 | 41 |
| 42 class CrossOriginPreflightResultCacheItem { | 42 class CrossOriginPreflightResultCacheItem { |
| 43 WTF_MAKE_NONCOPYABLE(CrossOriginPreflightResultCacheItem); | 43 WTF_MAKE_NONCOPYABLE(CrossOriginPreflightResultCacheItem); |
| 44 USING_FAST_MALLOC(CrossOriginPreflightResultCacheItem); | 44 USING_FAST_MALLOC(CrossOriginPreflightResultCacheItem); |
| 45 | 45 |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 89 typedef HashMap<std::pair<String, KURL>, | 89 typedef HashMap<std::pair<String, KURL>, |
| 90 std::unique_ptr<CrossOriginPreflightResultCacheItem>> | 90 std::unique_ptr<CrossOriginPreflightResultCacheItem>> |
| 91 CrossOriginPreflightResultHashMap; | 91 CrossOriginPreflightResultHashMap; |
| 92 | 92 |
| 93 CrossOriginPreflightResultHashMap preflight_hash_map_; | 93 CrossOriginPreflightResultHashMap preflight_hash_map_; |
| 94 }; | 94 }; |
| 95 | 95 |
| 96 } // namespace blink | 96 } // namespace blink |
| 97 | 97 |
| 98 #endif | 98 #endif |
| OLD | NEW |