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

Side by Side Diff: base/file_util_proxy.h

Issue 6714032: Move some files in base to base/memory. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: only base Created 9 years, 9 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 BASE_FILE_UTIL_PROXY_H_ 5 #ifndef BASE_FILE_UTIL_PROXY_H_
6 #define BASE_FILE_UTIL_PROXY_H_ 6 #define BASE_FILE_UTIL_PROXY_H_
7 7
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/callback.h" 10 #include "base/callback.h"
11 #include "base/file_path.h" 11 #include "base/file_path.h"
12 #include "base/file_util.h" 12 #include "base/file_util.h"
13 #include "base/memory/ref_counted.h"
13 #include "base/platform_file.h" 14 #include "base/platform_file.h"
14 #include "base/ref_counted.h"
15 #include "base/tracked_objects.h" 15 #include "base/tracked_objects.h"
16 16
17 namespace base { 17 namespace base {
18 18
19 class MessageLoopProxy; 19 class MessageLoopProxy;
20 class Time; 20 class Time;
21 21
22 // This class provides asynchronous access to common file routines. 22 // This class provides asynchronous access to common file routines.
23 class FileUtilProxy { 23 class FileUtilProxy {
24 public: 24 public:
(...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after
206 PlatformFile file, 206 PlatformFile file,
207 StatusCallback* callback); 207 StatusCallback* callback);
208 208
209 private: 209 private:
210 DISALLOW_IMPLICIT_CONSTRUCTORS(FileUtilProxy); 210 DISALLOW_IMPLICIT_CONSTRUCTORS(FileUtilProxy);
211 }; 211 };
212 212
213 } // namespace base 213 } // namespace base
214 214
215 #endif // BASE_FILE_UTIL_PROXY_H_ 215 #endif // BASE_FILE_UTIL_PROXY_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698