| OLD | NEW |
| 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 Loading... |
| 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_ |
| OLD | NEW |