OLD | NEW |
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 #ifndef BASE_PLATFORM_FILE_H_ | 5 #ifndef BASE_PLATFORM_FILE_H_ |
6 #define BASE_PLATFORM_FILE_H_ | 6 #define BASE_PLATFORM_FILE_H_ |
7 | 7 |
8 #include "build/build_config.h" | 8 #include "build/build_config.h" |
9 #if defined(OS_WIN) | 9 #if defined(OS_WIN) |
10 #include <windows.h> | 10 #include <windows.h> |
(...skipping 264 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
275 return temp; | 275 return temp; |
276 } | 276 } |
277 | 277 |
278 private: | 278 private: |
279 PlatformFile* value_; | 279 PlatformFile* value_; |
280 }; | 280 }; |
281 | 281 |
282 } // namespace base | 282 } // namespace base |
283 | 283 |
284 #endif // BASE_PLATFORM_FILE_H_ | 284 #endif // BASE_PLATFORM_FILE_H_ |
OLD | NEW |