0

ScopedHandle is not in a namespace.

Review URL: http://codereview.chromium.org/12663

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@6010 0039d316-1c4b-4281-b951-d872f2087c98
This commit is contained in:
deanm@chromium.org
2008-11-25 23:41:44 +00:00
parent c1173aceb0
commit 3303e65989

@ -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));