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

Side by Side Diff: base/files/file_util_posix.cc

Issue 1852433005: Convert //base to use std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove redundant base:: prefix 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 (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 #include "base/files/file_util.h" 5 #include "base/files/file_util.h"
6 6
7 #include <dirent.h> 7 #include <dirent.h>
8 #include <errno.h> 8 #include <errno.h>
9 #include <fcntl.h> 9 #include <fcntl.h>
10 #include <libgen.h> 10 #include <libgen.h>
11 #include <limits.h> 11 #include <limits.h>
12 #include <stddef.h> 12 #include <stddef.h>
13 #include <stdio.h> 13 #include <stdio.h>
14 #include <stdlib.h> 14 #include <stdlib.h>
15 #include <string.h> 15 #include <string.h>
16 #include <sys/errno.h> 16 #include <sys/errno.h>
17 #include <sys/mman.h> 17 #include <sys/mman.h>
18 #include <sys/param.h> 18 #include <sys/param.h>
19 #include <sys/stat.h> 19 #include <sys/stat.h>
20 #include <sys/time.h> 20 #include <sys/time.h>
21 #include <sys/types.h> 21 #include <sys/types.h>
22 #include <time.h> 22 #include <time.h>
23 #include <unistd.h> 23 #include <unistd.h>
24 24
25 #include <memory>
Nico 2016/04/04 17:14:55 unused?
dcheng 2016/04/04 17:43:38 Done.
26
25 #include "base/files/file_enumerator.h" 27 #include "base/files/file_enumerator.h"
26 #include "base/files/file_path.h" 28 #include "base/files/file_path.h"
27 #include "base/files/scoped_file.h" 29 #include "base/files/scoped_file.h"
28 #include "base/logging.h" 30 #include "base/logging.h"
29 #include "base/macros.h" 31 #include "base/macros.h"
30 #include "base/memory/scoped_ptr.h"
31 #include "base/memory/singleton.h" 32 #include "base/memory/singleton.h"
32 #include "base/path_service.h" 33 #include "base/path_service.h"
33 #include "base/posix/eintr_wrapper.h" 34 #include "base/posix/eintr_wrapper.h"
34 #include "base/stl_util.h" 35 #include "base/stl_util.h"
35 #include "base/strings/string_util.h" 36 #include "base/strings/string_util.h"
36 #include "base/strings/stringprintf.h" 37 #include "base/strings/stringprintf.h"
37 #include "base/strings/sys_string_conversions.h" 38 #include "base/strings/sys_string_conversions.h"
38 #include "base/strings/utf_string_conversions.h" 39 #include "base/strings/utf_string_conversions.h"
39 #include "base/sys_info.h" 40 #include "base/sys_info.h"
40 #include "base/threading/thread_restrictions.h" 41 #include "base/threading/thread_restrictions.h"
(...skipping 886 matching lines...) Expand 10 before | Expand all | Expand 10 after
927 return false; 928 return false;
928 929
929 DeleteFile(from_path, true); 930 DeleteFile(from_path, true);
930 return true; 931 return true;
931 } 932 }
932 933
933 } // namespace internal 934 } // namespace internal
934 935
935 #endif // !defined(OS_NACL_NONSFI) 936 #endif // !defined(OS_NACL_NONSFI)
936 } // namespace base 937 } // namespace base
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698