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

Unified Diff: src/base/test_file_util_win.cc

Issue 12663: ScopedHandle is not in a namespace. (Closed)
Patch Set: Created 12 years, 1 month 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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));
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698