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

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

Issue 7342047: Cleanup base/stl_util (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: removed unneeded include + rebase Created 9 years, 5 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 | Annotate | Revision Log
OLDNEW
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 "base/files/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/message_loop.h" 20 #include "base/message_loop.h"
21 #include "base/message_loop_proxy.h" 21 #include "base/message_loop_proxy.h"
22 #include "base/path_service.h" 22 #include "base/path_service.h"
23 #include "base/scoped_temp_dir.h" 23 #include "base/scoped_temp_dir.h"
24 #include "base/stl_util-inl.h" 24 #include "base/stl_util.h"
25 #include "base/stringprintf.h" 25 #include "base/stringprintf.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 { 31 namespace base {
32 namespace files { 32 namespace files {
33 33
34 namespace { 34 namespace {
(...skipping 584 matching lines...) Expand 10 before | Expand all | Expand 10 after
619 ASSERT_TRUE(ChangeFilePermissions(test_dir1, Execute, false)); 619 ASSERT_TRUE(ChangeFilePermissions(test_dir1, Execute, false));
620 ASSERT_TRUE(WaitForEvents()); 620 ASSERT_TRUE(WaitForEvents());
621 ASSERT_TRUE(ChangeFilePermissions(test_dir1, Execute, true)); 621 ASSERT_TRUE(ChangeFilePermissions(test_dir1, Execute, true));
622 } 622 }
623 623
624 #endif // OS_MACOSX 624 #endif // OS_MACOSX
625 } // namespace 625 } // namespace
626 626
627 } // namespace files 627 } // namespace files
628 } // namespace base 628 } // namespace base
OLDNEW
« no previous file with comments | « base/base.gypi ('k') | base/memory/scoped_vector.h » ('j') | base/stl_util.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698