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 #include "content/common/file_path_watcher/file_path_watcher.h" | 5 #include "base/files/file_path_watcher.h" |
6 | 6 |
7 #include <set> | 7 #include <set> |
8 | 8 |
9 #if defined(OS_WIN) | 9 #if defined(OS_WIN) |
10 #include <windows.h> | 10 #include <windows.h> |
11 #include <aclapi.h> | 11 #include <aclapi.h> |
12 #elif defined(OS_POSIX) | 12 #elif defined(OS_POSIX) |
13 #include <sys/stat.h> | 13 #include <sys/stat.h> |
14 #endif | 14 #endif |
15 | 15 |
16 #include "base/basictypes.h" | 16 #include "base/basictypes.h" |
17 #include "base/compiler_specific.h" | 17 #include "base/compiler_specific.h" |
18 #include "base/file_path.h" | 18 #include "base/file_path.h" |
19 #include "base/file_util.h" | 19 #include "base/file_util.h" |
20 #include "base/memory/scoped_temp_dir.h" | 20 #include "base/memory/scoped_temp_dir.h" |
21 #include "base/message_loop.h" | 21 #include "base/message_loop.h" |
22 #include "base/message_loop_proxy.h" | 22 #include "base/message_loop_proxy.h" |
23 #include "base/path_service.h" | 23 #include "base/path_service.h" |
24 #include "base/string_util.h" | 24 #include "base/string_util.h" |
25 #include "base/stl_util-inl.h" | 25 #include "base/stl_util-inl.h" |
26 #include "base/synchronization/waitable_event.h" | 26 #include "base/synchronization/waitable_event.h" |
27 #include "base/test/test_timeouts.h" | 27 #include "base/test/test_timeouts.h" |
28 #include "base/threading/thread.h" | 28 #include "base/threading/thread.h" |
29 #include "testing/gtest/include/gtest/gtest.h" | 29 #include "testing/gtest/include/gtest/gtest.h" |
30 | 30 |
| 31 namespace base { |
| 32 namespace files { |
| 33 |
31 namespace { | 34 namespace { |
32 | 35 |
33 class TestDelegate; | 36 class TestDelegate; |
34 | 37 |
35 // Aggregates notifications from the test delegates and breaks the message loop | 38 // Aggregates notifications from the test delegates and breaks the message loop |
36 // the test thread is waiting on once they all came in. | 39 // the test thread is waiting on once they all came in. |
37 class NotificationCollector | 40 class NotificationCollector |
38 : public base::RefCountedThreadSafe<NotificationCollector> { | 41 : public base::RefCountedThreadSafe<NotificationCollector> { |
39 public: | 42 public: |
40 NotificationCollector() | 43 NotificationCollector() |
(...skipping 566 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
607 | 610 |
608 // We should get notified in this case because filepathwatcher can no | 611 // We should get notified in this case because filepathwatcher can no |
609 // longer access the file | 612 // longer access the file |
610 ASSERT_TRUE(ChangeFilePermissions(test_dir1, Execute, false)); | 613 ASSERT_TRUE(ChangeFilePermissions(test_dir1, Execute, false)); |
611 ASSERT_TRUE(WaitForEvents()); | 614 ASSERT_TRUE(WaitForEvents()); |
612 ASSERT_TRUE(ChangeFilePermissions(test_dir1, Execute, true)); | 615 ASSERT_TRUE(ChangeFilePermissions(test_dir1, Execute, true)); |
613 } | 616 } |
614 | 617 |
615 #endif // OS_MACOSX | 618 #endif // OS_MACOSX |
616 } // namespace | 619 } // namespace |
| 620 |
| 621 } // namespace files |
| 622 } // namespace base |
OLD | NEW |