Chromium Code Reviews| Index: Source/modules/serviceworkers/Headers.h |
| diff --git a/Source/modules/serviceworkers/Headers.h b/Source/modules/serviceworkers/Headers.h |
| index c4ffd4449d3fc8d2c44788d4c34578fac030a9a8..1f8e67dc7d7243e51c98d25f35e315c853ff41f3 100644 |
| --- a/Source/modules/serviceworkers/Headers.h |
| +++ b/Source/modules/serviceworkers/Headers.h |
| @@ -47,15 +47,15 @@ public: |
| void setGuard(Guard guard) { m_guard = guard; } |
| Guard guard() const { return m_guard; } |
| + void fillWith(const Headers*, ExceptionState&); |
|
yhirano
2014/07/02 01:53:07
Please describe that |this| must be cleared before
horo
2014/07/02 03:33:04
Done.
|
| + void fillWith(const Dictionary&, ExceptionState&); |
| + |
| private: |
| Headers(); |
| // Shares the FetchHeaderList. Called when creating a Request or Response. |
| explicit Headers(FetchHeaderList*); |
| void forEachInternal(PassOwnPtr<HeadersForEachCallback>, ScriptValue*); |
| - void fillWith(const Headers*, ExceptionState&); |
| - void fillWith(const Dictionary&, ExceptionState&); |
| - |
| RefPtr<FetchHeaderList> m_headerList; |
| Guard m_guard; |
| }; |