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

Side by Side Diff: third_party/WebKit/Source/modules/fetch/Headers.h

Issue 2050123002: Remove OwnPtr from Blink. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: First attempt to land. Created 4 years, 6 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
OLDNEW
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/Iterable.h" 8 #include "bindings/core/v8/Iterable.h"
9 #include "bindings/core/v8/ScriptState.h" 9 #include "bindings/core/v8/ScriptState.h"
10 #include "bindings/core/v8/ScriptWrappable.h" 10 #include "bindings/core/v8/ScriptWrappable.h"
11 #include "modules/ModulesExport.h" 11 #include "modules/ModulesExport.h"
12 #include "modules/fetch/FetchHeaderList.h" 12 #include "modules/fetch/FetchHeaderList.h"
13 #include "wtf/Forward.h" 13 #include "wtf/Forward.h"
14 #include "wtf/PassOwnPtr.h"
15 14
16 namespace blink { 15 namespace blink {
17 16
18 class Dictionary; 17 class Dictionary;
19 class ExceptionState; 18 class ExceptionState;
20 class Iterator; 19 class Iterator;
21 20
22 // http://fetch.spec.whatwg.org/#headers-class 21 // http://fetch.spec.whatwg.org/#headers-class
23 class MODULES_EXPORT Headers final : public GarbageCollected<Headers>, public Sc riptWrappable, public PairIterable<String, String> { 22 class MODULES_EXPORT Headers final : public GarbageCollected<Headers>, public Sc riptWrappable, public PairIterable<String, String> {
24 DEFINE_WRAPPERTYPEINFO(); 23 DEFINE_WRAPPERTYPEINFO();
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 61
63 Member<FetchHeaderList> m_headerList; 62 Member<FetchHeaderList> m_headerList;
64 Guard m_guard; 63 Guard m_guard;
65 64
66 IterationSource* startIteration(ScriptState*, ExceptionState&) override; 65 IterationSource* startIteration(ScriptState*, ExceptionState&) override;
67 }; 66 };
68 67
69 } // namespace blink 68 } // namespace blink
70 69
71 #endif // Headers_h 70 #endif // Headers_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698