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

Side by Side Diff: third_party/WebKit/Source/modules/fetch/FetchFormDataConsumerHandle.cpp

Issue 1882003002: include RefCounted.h where needed, only. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: compile fix Created 4 years, 8 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 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 "modules/fetch/FetchFormDataConsumerHandle.h" 5 #include "modules/fetch/FetchFormDataConsumerHandle.h"
6 6
7 #include "modules/fetch/DataConsumerHandleUtil.h" 7 #include "modules/fetch/DataConsumerHandleUtil.h"
8 #include "modules/fetch/FetchBlobDataConsumerHandle.h" 8 #include "modules/fetch/FetchBlobDataConsumerHandle.h"
9 #include "wtf/ThreadSafeRefCounted.h"
10 #include "wtf/ThreadingPrimitives.h" 9 #include "wtf/ThreadingPrimitives.h"
11 #include "wtf/Vector.h" 10 #include "wtf/Vector.h"
12 #include "wtf/text/TextCodec.h" 11 #include "wtf/text/TextCodec.h"
13 #include "wtf/text/TextEncoding.h" 12 #include "wtf/text/TextEncoding.h"
14 #include "wtf/text/WTFString.h" 13 #include "wtf/text/WTFString.h"
15 14
16 #include <utility> 15 #include <utility>
17 16
18 namespace blink { 17 namespace blink {
19 18
(...skipping 309 matching lines...) Expand 10 before | Expand all | Expand 10 after
329 } 328 }
330 } 329 }
331 FetchFormDataConsumerHandle::~FetchFormDataConsumerHandle() {} 330 FetchFormDataConsumerHandle::~FetchFormDataConsumerHandle() {}
332 331
333 FetchDataConsumerHandle::Reader* FetchFormDataConsumerHandle::obtainReaderIntern al(Client* client) 332 FetchDataConsumerHandle::Reader* FetchFormDataConsumerHandle::obtainReaderIntern al(Client* client)
334 { 333 {
335 return m_context->obtainReader(client).leakPtr(); 334 return m_context->obtainReader(client).leakPtr();
336 } 335 }
337 336
338 } // namespace blink 337 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/modules/canvas2d/Path2D.h ('k') | third_party/WebKit/Source/modules/filesystem/LocalFileSystem.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698