Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(97)

Side by Side Diff: third_party/WebKit/WebCore/platform/network/HTTPHeaderMap.cpp

Issue 20076: WebKit merge 40500:40539 [WebKit side] (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 23 matching lines...) Expand all
34 #include <memory> 34 #include <memory>
35 #include <utility> 35 #include <utility>
36 36
37 using namespace std; 37 using namespace std;
38 38
39 namespace WebCore { 39 namespace WebCore {
40 40
41 auto_ptr<CrossThreadHTTPHeaderMapData> HTTPHeaderMap::copyData() const 41 auto_ptr<CrossThreadHTTPHeaderMapData> HTTPHeaderMap::copyData() const
42 { 42 {
43 auto_ptr<CrossThreadHTTPHeaderMapData> data(new CrossThreadHTTPHeaderMapData ()); 43 auto_ptr<CrossThreadHTTPHeaderMapData> data(new CrossThreadHTTPHeaderMapData ());
44 data->reserveCapacity(size()); 44 data->reserveInitialCapacity(size());
45 45
46 HTTPHeaderMap::const_iterator end_it = end(); 46 HTTPHeaderMap::const_iterator end_it = end();
47 for (HTTPHeaderMap::const_iterator it = begin(); it != end_it; ++it) { 47 for (HTTPHeaderMap::const_iterator it = begin(); it != end_it; ++it) {
48 data->append(make_pair(it->first.string().copy(), it->second.copy())); 48 data->append(make_pair(it->first.string().copy(), it->second.copy()));
49 } 49 }
50 return data; 50 return data;
51 } 51 }
52 52
53 void HTTPHeaderMap::adopt(auto_ptr<CrossThreadHTTPHeaderMapData> data) 53 void HTTPHeaderMap::adopt(auto_ptr<CrossThreadHTTPHeaderMapData> data)
54 { 54 {
55 clear(); 55 clear();
56 size_t dataSize = data->size(); 56 size_t dataSize = data->size();
57 for (size_t index = 0; index < dataSize; ++index) { 57 for (size_t index = 0; index < dataSize; ++index) {
58 pair<String, String>& header = (*data)[index]; 58 pair<String, String>& header = (*data)[index];
59 set(header.first, header.second); 59 set(header.first, header.second);
60 } 60 }
61 } 61 }
62 62
63 } // namespace WebCore 63 } // namespace WebCore
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698