Index: src/base/test_file_util_win.cc |
diff --git a/src/base/test_file_util_win.cc b/src/base/test_file_util_win.cc |
index 3973af6abb55513867747be2a0959f4af2f985d9..682a918a653ccceb22e2b66cc87c705b419b9a84 100644 |
--- a/src/base/test_file_util_win.cc |
+++ b/src/base/test_file_util_win.cc |
@@ -9,12 +9,13 @@ |
#include <vector> |
#include "base/file_util.h" |
+#include "base/scoped_handle.h" |
namespace file_util { |
bool EvictFileFromSystemCache(const wchar_t* file) { |
// Request exclusive access to the file and overwrite it with no buffering. |
- win_util::ScopedHandle hfile( |
+ ScopedHandle hfile( |
CreateFile(file, GENERIC_READ | GENERIC_WRITE, 0, NULL, |
OPEN_EXISTING, FILE_FLAG_NO_BUFFERING, |
NULL)); |