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

Side by Side Diff: net/base/file_stream.h

Issue 1852953002: Fix a bunch of IWYU violators that don't include scoped_ptr.h (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: address comment 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
« no previous file with comments | « mojo/shell/public/cpp/initialize_base_and_icu.cc ('k') | net/base/network_change_notifier.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 // This file defines FileStream, a basic interface for reading and writing files 5 // This file defines FileStream, a basic interface for reading and writing files
6 // synchronously or asynchronously with support for seeking to an offset. 6 // synchronously or asynchronously with support for seeking to an offset.
7 // Note that even when used asynchronously, only one operation is supported at 7 // Note that even when used asynchronously, only one operation is supported at
8 // a time. 8 // a time.
9 9
10 #ifndef NET_BASE_FILE_STREAM_H_ 10 #ifndef NET_BASE_FILE_STREAM_H_
11 #define NET_BASE_FILE_STREAM_H_ 11 #define NET_BASE_FILE_STREAM_H_
12 12
13 #include <stdint.h> 13 #include <stdint.h>
14 14
15 #include "base/files/file.h" 15 #include "base/files/file.h"
16 #include "base/macros.h" 16 #include "base/macros.h"
17 #include "base/memory/scoped_ptr.h"
17 #include "net/base/completion_callback.h" 18 #include "net/base/completion_callback.h"
18 #include "net/base/net_export.h" 19 #include "net/base/net_export.h"
19 20
20 namespace base { 21 namespace base {
21 class FilePath; 22 class FilePath;
22 class TaskRunner; 23 class TaskRunner;
23 } 24 }
24 25
25 namespace net { 26 namespace net {
26 27
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after
151 // without explicitly calling Close, the file should be closed asynchronously 152 // without explicitly calling Close, the file should be closed asynchronously
152 // without delaying FileStream's destructor. 153 // without delaying FileStream's destructor.
153 scoped_ptr<Context> context_; 154 scoped_ptr<Context> context_;
154 155
155 DISALLOW_COPY_AND_ASSIGN(FileStream); 156 DISALLOW_COPY_AND_ASSIGN(FileStream);
156 }; 157 };
157 158
158 } // namespace net 159 } // namespace net
159 160
160 #endif // NET_BASE_FILE_STREAM_H_ 161 #endif // NET_BASE_FILE_STREAM_H_
OLDNEW
« no previous file with comments | « mojo/shell/public/cpp/initialize_base_and_icu.cc ('k') | net/base/network_change_notifier.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698