| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2009 Google Inc. All rights reserved. | 2 * Copyright (C) 2009 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 13 matching lines...) Expand all Loading... |
| 24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | 24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 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 "config.h" | 31 #include "config.h" |
| 32 #include "platform/network/HTTPHeaderMap.h" | 32 #include "platform/network/HTTPHeaderMap.h" |
| 33 | 33 |
| 34 | |
| 35 using namespace std; | |
| 36 | |
| 37 namespace blink { | 34 namespace blink { |
| 38 | 35 |
| 39 HTTPHeaderMap::HTTPHeaderMap() | 36 HTTPHeaderMap::HTTPHeaderMap() |
| 40 { | 37 { |
| 41 } | 38 } |
| 42 | 39 |
| 43 HTTPHeaderMap::~HTTPHeaderMap() | 40 HTTPHeaderMap::~HTTPHeaderMap() |
| 44 { | 41 { |
| 45 } | 42 } |
| 46 | 43 |
| 47 PassOwnPtr<CrossThreadHTTPHeaderMapData> HTTPHeaderMap::copyData() const | 44 PassOwnPtr<CrossThreadHTTPHeaderMapData> HTTPHeaderMap::copyData() const |
| 48 { | 45 { |
| 49 OwnPtr<CrossThreadHTTPHeaderMapData> data = adoptPtr(new CrossThreadHTTPHead
erMapData()); | 46 OwnPtr<CrossThreadHTTPHeaderMapData> data = adoptPtr(new CrossThreadHTTPHead
erMapData()); |
| 50 data->reserveInitialCapacity(size()); | 47 data->reserveInitialCapacity(size()); |
| 51 | 48 |
| 52 HTTPHeaderMap::const_iterator endIt = end(); | 49 HTTPHeaderMap::const_iterator endIt = end(); |
| 53 for (HTTPHeaderMap::const_iterator it = begin(); it != endIt; ++it) | 50 for (HTTPHeaderMap::const_iterator it = begin(); it != endIt; ++it) |
| 54 data->uncheckedAppend(make_pair(it->key.string().isolatedCopy(), it->val
ue.string().isolatedCopy())); | 51 data->uncheckedAppend(std::make_pair(it->key.string().isolatedCopy(), it
->value.string().isolatedCopy())); |
| 55 | 52 |
| 56 return data.release(); | 53 return data.release(); |
| 57 } | 54 } |
| 58 | 55 |
| 59 void HTTPHeaderMap::adopt(PassOwnPtr<CrossThreadHTTPHeaderMapData> data) | 56 void HTTPHeaderMap::adopt(PassOwnPtr<CrossThreadHTTPHeaderMapData> data) |
| 60 { | 57 { |
| 61 clear(); | 58 clear(); |
| 62 size_t dataSize = data->size(); | 59 size_t dataSize = data->size(); |
| 63 for (size_t index = 0; index < dataSize; ++index) { | 60 for (size_t index = 0; index < dataSize; ++index) { |
| 64 pair<String, String>& header = (*data)[index]; | 61 pair<String, String>& header = (*data)[index]; |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 106 { | 103 { |
| 107 return find<CaseFoldingCStringTranslator>(name) != end(); | 104 return find<CaseFoldingCStringTranslator>(name) != end(); |
| 108 } | 105 } |
| 109 | 106 |
| 110 HTTPHeaderMap::AddResult HTTPHeaderMap::add(const char* name, const AtomicString
& value) | 107 HTTPHeaderMap::AddResult HTTPHeaderMap::add(const char* name, const AtomicString
& value) |
| 111 { | 108 { |
| 112 return HashMap<AtomicString, AtomicString, CaseFoldingHash>::add<CaseFolding
CStringTranslator>(name, value); | 109 return HashMap<AtomicString, AtomicString, CaseFoldingHash>::add<CaseFolding
CStringTranslator>(name, value); |
| 113 } | 110 } |
| 114 | 111 |
| 115 } // namespace blink | 112 } // namespace blink |
| OLD | NEW |