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 #include "config.h" | |
6 #include "modules/fetch/Headers.h" | 5 #include "modules/fetch/Headers.h" |
7 | 6 |
8 #include "bindings/core/v8/Dictionary.h" | 7 #include "bindings/core/v8/Dictionary.h" |
9 #include "bindings/core/v8/ExceptionState.h" | 8 #include "bindings/core/v8/ExceptionState.h" |
10 #include "bindings/core/v8/V8IteratorResultValue.h" | 9 #include "bindings/core/v8/V8IteratorResultValue.h" |
11 #include "core/dom/Iterator.h" | 10 #include "core/dom/Iterator.h" |
12 #include "core/fetch/FetchUtils.h" | 11 #include "core/fetch/FetchUtils.h" |
13 #include "wtf/NotFound.h" | 12 #include "wtf/NotFound.h" |
14 #include "wtf/PassRefPtr.h" | 13 #include "wtf/PassRefPtr.h" |
15 #include "wtf/RefPtr.h" | 14 #include "wtf/RefPtr.h" |
(...skipping 306 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
322 { | 321 { |
323 visitor->trace(m_headerList); | 322 visitor->trace(m_headerList); |
324 } | 323 } |
325 | 324 |
326 PairIterable<String, String>::IterationSource* Headers::startIteration(ScriptSta
te*, ExceptionState&) | 325 PairIterable<String, String>::IterationSource* Headers::startIteration(ScriptSta
te*, ExceptionState&) |
327 { | 326 { |
328 return new HeadersIterationSource(m_headerList); | 327 return new HeadersIterationSource(m_headerList); |
329 } | 328 } |
330 | 329 |
331 } // namespace blink | 330 } // namespace blink |
OLD | NEW |