Chromium Code Reviews| 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 using ::base::files::FilePathWatcher; | |
|
brettw
2011/04/06 16:16:54
I would also wrap this in base::files and delete t
| |
| 32 | |
| 31 namespace { | 33 namespace { |
| 32 | 34 |
| 33 class TestDelegate; | 35 class TestDelegate; |
| 34 | 36 |
| 35 // Aggregates notifications from the test delegates and breaks the message loop | 37 // Aggregates notifications from the test delegates and breaks the message loop |
| 36 // the test thread is waiting on once they all came in. | 38 // the test thread is waiting on once they all came in. |
| 37 class NotificationCollector | 39 class NotificationCollector |
| 38 : public base::RefCountedThreadSafe<NotificationCollector> { | 40 : public base::RefCountedThreadSafe<NotificationCollector> { |
| 39 public: | 41 public: |
| 40 NotificationCollector() | 42 NotificationCollector() |
| (...skipping 566 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 607 | 609 |
| 608 // We should get notified in this case because filepathwatcher can no | 610 // We should get notified in this case because filepathwatcher can no |
| 609 // longer access the file | 611 // longer access the file |
| 610 ASSERT_TRUE(ChangeFilePermissions(test_dir1, Execute, false)); | 612 ASSERT_TRUE(ChangeFilePermissions(test_dir1, Execute, false)); |
| 611 ASSERT_TRUE(WaitForEvents()); | 613 ASSERT_TRUE(WaitForEvents()); |
| 612 ASSERT_TRUE(ChangeFilePermissions(test_dir1, Execute, true)); | 614 ASSERT_TRUE(ChangeFilePermissions(test_dir1, Execute, true)); |
| 613 } | 615 } |
| 614 | 616 |
| 615 #endif // OS_MACOSX | 617 #endif // OS_MACOSX |
| 616 } // namespace | 618 } // namespace |
| OLD | NEW |