| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef Headers_h | 5 #ifndef Headers_h |
| 6 #define Headers_h | 6 #define Headers_h |
| 7 | 7 |
| 8 #include "bindings/core/v8/ScriptState.h" | 8 #include "bindings/core/v8/ScriptState.h" |
| 9 #include "bindings/core/v8/ScriptWrappable.h" | 9 #include "bindings/core/v8/ScriptWrappable.h" |
| 10 #include "modules/fetch/FetchHeaderList.h" | 10 #include "modules/fetch/FetchHeaderList.h" |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 Headers* createCopy() const; | 35 Headers* createCopy() const; |
| 36 | 36 |
| 37 // Headers.idl implementation. | 37 // Headers.idl implementation. |
| 38 void append(const String& name, const String& value, ExceptionState&); | 38 void append(const String& name, const String& value, ExceptionState&); |
| 39 void remove(const String& key, ExceptionState&); | 39 void remove(const String& key, ExceptionState&); |
| 40 String get(const String& key, ExceptionState&); | 40 String get(const String& key, ExceptionState&); |
| 41 Vector<String> getAll(const String& key, ExceptionState&); | 41 Vector<String> getAll(const String& key, ExceptionState&); |
| 42 bool has(const String& key, ExceptionState&); | 42 bool has(const String& key, ExceptionState&); |
| 43 void set(const String& key, const String& value, ExceptionState&); | 43 void set(const String& key, const String& value, ExceptionState&); |
| 44 | 44 |
| 45 // Iterable | 45 // iterable<ByteString, ByteString> |
| 46 Iterator* iterator(ScriptState*, ExceptionState&); | 46 Iterator* iterator(ScriptState*, ExceptionState&); |
| 47 | 47 |
| 48 void setGuard(Guard guard) { m_guard = guard; } | 48 void setGuard(Guard guard) { m_guard = guard; } |
| 49 Guard guard() const { return m_guard; } | 49 Guard guard() const { return m_guard; } |
| 50 | 50 |
| 51 // These methods should only be called when size() would return 0. | 51 // These methods should only be called when size() would return 0. |
| 52 void fillWith(const Headers*, ExceptionState&); | 52 void fillWith(const Headers*, ExceptionState&); |
| 53 void fillWith(const Vector<Vector<String> >&, ExceptionState&); | 53 void fillWith(const Vector<Vector<String> >&, ExceptionState&); |
| 54 void fillWith(const Dictionary&, ExceptionState&); | 54 void fillWith(const Dictionary&, ExceptionState&); |
| 55 | 55 |
| 56 FetchHeaderList* headerList() const { return m_headerList; } | 56 FetchHeaderList* headerList() const { return m_headerList; } |
| 57 void trace(Visitor*); | 57 void trace(Visitor*); |
| 58 | 58 |
| 59 private: | 59 private: |
| 60 Headers(); | 60 Headers(); |
| 61 // Shares the FetchHeaderList. Called when creating a Request or Response. | 61 // Shares the FetchHeaderList. Called when creating a Request or Response. |
| 62 explicit Headers(FetchHeaderList*); | 62 explicit Headers(FetchHeaderList*); |
| 63 | 63 |
| 64 Member<FetchHeaderList> m_headerList; | 64 Member<FetchHeaderList> m_headerList; |
| 65 Guard m_guard; | 65 Guard m_guard; |
| 66 }; | 66 }; |
| 67 | 67 |
| 68 } // namespace blink | 68 } // namespace blink |
| 69 | 69 |
| 70 #endif // Headers_h | 70 #endif // Headers_h |
| OLD | NEW |