| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006 Apple Computer, Inc. All rights reserved. | 2 * Copyright (C) 2006 Apple Computer, Inc. All rights reserved. |
| 3 * Copyright (C) 2009 Google Inc. All rights reserved. | 3 * Copyright (C) 2009 Google Inc. All rights reserved. |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
| 7 * are met: | 7 * are met: |
| 8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. 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 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
| (...skipping 18 matching lines...) Expand all Loading... |
| 29 | 29 |
| 30 #include "platform/PlatformExport.h" | 30 #include "platform/PlatformExport.h" |
| 31 #include "wtf/HashMap.h" | 31 #include "wtf/HashMap.h" |
| 32 #include "wtf/PassOwnPtr.h" | 32 #include "wtf/PassOwnPtr.h" |
| 33 #include "wtf/Vector.h" | 33 #include "wtf/Vector.h" |
| 34 #include "wtf/text/AtomicString.h" | 34 #include "wtf/text/AtomicString.h" |
| 35 #include "wtf/text/AtomicStringHash.h" | 35 #include "wtf/text/AtomicStringHash.h" |
| 36 #include "wtf/text/StringHash.h" | 36 #include "wtf/text/StringHash.h" |
| 37 #include <utility> | 37 #include <utility> |
| 38 | 38 |
| 39 namespace WebCore { | 39 namespace blink { |
| 40 | 40 |
| 41 typedef Vector<std::pair<String, String> > CrossThreadHTTPHeaderMapData; | 41 typedef Vector<std::pair<String, String> > CrossThreadHTTPHeaderMapData; |
| 42 | 42 |
| 43 // FIXME: Not every header fits into a map. Notably, multiple Set-Cookie header
fields are needed to set multiple cookies. | 43 // FIXME: Not every header fits into a map. Notably, multiple Set-Cookie header
fields are needed to set multiple cookies. |
| 44 class PLATFORM_EXPORT HTTPHeaderMap : public HashMap<AtomicString, AtomicString,
CaseFoldingHash> { | 44 class PLATFORM_EXPORT HTTPHeaderMap : public HashMap<AtomicString, AtomicString,
CaseFoldingHash> { |
| 45 public: | 45 public: |
| 46 HTTPHeaderMap(); | 46 HTTPHeaderMap(); |
| 47 ~HTTPHeaderMap(); | 47 ~HTTPHeaderMap(); |
| 48 | 48 |
| 49 // Gets a copy of the data suitable for passing to another thread. | 49 // Gets a copy of the data suitable for passing to another thread. |
| 50 PassOwnPtr<CrossThreadHTTPHeaderMapData> copyData() const; | 50 PassOwnPtr<CrossThreadHTTPHeaderMapData> copyData() const; |
| 51 | 51 |
| 52 void adopt(PassOwnPtr<CrossThreadHTTPHeaderMapData>); | 52 void adopt(PassOwnPtr<CrossThreadHTTPHeaderMapData>); |
| 53 | 53 |
| 54 const AtomicString& get(const AtomicString& name) const; | 54 const AtomicString& get(const AtomicString& name) const; |
| 55 | 55 |
| 56 AddResult add(const AtomicString& name, const AtomicString& value); | 56 AddResult add(const AtomicString& name, const AtomicString& value); |
| 57 | 57 |
| 58 // Alternate accessors that are faster than converting the char* to AtomicSt
ring first. | 58 // Alternate accessors that are faster than converting the char* to AtomicSt
ring first. |
| 59 bool contains(const char*) const; | 59 bool contains(const char*) const; |
| 60 const AtomicString& get(const char*) const; | 60 const AtomicString& get(const char*) const; |
| 61 AddResult add(const char* name, const AtomicString& value); | 61 AddResult add(const char* name, const AtomicString& value); |
| 62 | 62 |
| 63 }; | 63 }; |
| 64 | 64 |
| 65 } // namespace WebCore | 65 } // namespace blink |
| 66 | 66 |
| 67 #endif // HTTPHeaderMap_h | 67 #endif // HTTPHeaderMap_h |
| OLD | NEW |