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

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

Issue 1549853002: Switch to standard integer types in base/files/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix Created 5 years 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 | « base/files/file_path_watcher_mac.cc ('k') | base/files/file_path_watcher_win.cc » ('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 #include "base/files/file_path_watcher.h" 5 #include "base/files/file_path_watcher.h"
6 6
7 #if defined(OS_WIN) 7 #if defined(OS_WIN)
8 #include <windows.h> 8 #include <windows.h>
9 #include <aclapi.h> 9 #include <aclapi.h>
10 #elif defined(OS_POSIX) 10 #elif defined(OS_POSIX)
11 #include <sys/stat.h> 11 #include <sys/stat.h>
12 #endif 12 #endif
13 13
14 #include <set> 14 #include <set>
15 15
16 #include "base/basictypes.h"
17 #include "base/bind.h" 16 #include "base/bind.h"
18 #include "base/bind_helpers.h" 17 #include "base/bind_helpers.h"
19 #include "base/compiler_specific.h" 18 #include "base/compiler_specific.h"
20 #include "base/files/file_path.h" 19 #include "base/files/file_path.h"
21 #include "base/files/file_util.h" 20 #include "base/files/file_util.h"
22 #include "base/files/scoped_temp_dir.h" 21 #include "base/files/scoped_temp_dir.h"
23 #include "base/location.h" 22 #include "base/location.h"
23 #include "base/macros.h"
24 #include "base/run_loop.h" 24 #include "base/run_loop.h"
25 #include "base/single_thread_task_runner.h" 25 #include "base/single_thread_task_runner.h"
26 #include "base/stl_util.h" 26 #include "base/stl_util.h"
27 #include "base/strings/stringprintf.h" 27 #include "base/strings/stringprintf.h"
28 #include "base/synchronization/waitable_event.h" 28 #include "base/synchronization/waitable_event.h"
29 #include "base/test/test_file_util.h" 29 #include "base/test/test_file_util.h"
30 #include "base/test/test_timeouts.h" 30 #include "base/test/test_timeouts.h"
31 #include "base/thread_task_runner_handle.h" 31 #include "base/thread_task_runner_handle.h"
32 #include "base/threading/thread.h" 32 #include "base/threading/thread.h"
33 #include "build/build_config.h"
33 #include "testing/gtest/include/gtest/gtest.h" 34 #include "testing/gtest/include/gtest/gtest.h"
34 35
35 #if defined(OS_ANDROID) 36 #if defined(OS_ANDROID)
36 #include "base/android/path_utils.h" 37 #include "base/android/path_utils.h"
37 #endif // defined(OS_ANDROID) 38 #endif // defined(OS_ANDROID)
38 39
39 namespace base { 40 namespace base {
40 41
41 namespace { 42 namespace {
42 43
(...skipping 856 matching lines...) Expand 10 before | Expand all | Expand 10 after
899 ASSERT_TRUE(ChangeFilePermissions(test_dir1, Execute, false)); 900 ASSERT_TRUE(ChangeFilePermissions(test_dir1, Execute, false));
900 ASSERT_TRUE(WaitForEvents()); 901 ASSERT_TRUE(WaitForEvents());
901 ASSERT_TRUE(ChangeFilePermissions(test_dir1, Execute, true)); 902 ASSERT_TRUE(ChangeFilePermissions(test_dir1, Execute, true));
902 DeleteDelegateOnFileThread(delegate.release()); 903 DeleteDelegateOnFileThread(delegate.release());
903 } 904 }
904 905
905 #endif // OS_MACOSX 906 #endif // OS_MACOSX
906 } // namespace 907 } // namespace
907 908
908 } // namespace base 909 } // namespace base
OLDNEW
« no previous file with comments | « base/files/file_path_watcher_mac.cc ('k') | base/files/file_path_watcher_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698