summaryrefslogtreecommitdiffstats
path: root/chrome/browser/visitedlink_master.cc
diff options
context:
space:
mode:
authorben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-05-08 23:12:25 +0000
committerben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-05-08 23:12:25 +0000
commit4a0765a6e06b2e188c68999a52b3fea976e72c40 (patch)
tree4d5f07ef3228e084d415aee83047b2f243493d7e /chrome/browser/visitedlink_master.cc
parent11592b698eb4de8e9874e746f796fe6cd8a56bf6 (diff)
downloadchromium_src-4a0765a6e06b2e188c68999a52b3fea976e72c40.zip
chromium_src-4a0765a6e06b2e188c68999a52b3fea976e72c40.tar.gz
chromium_src-4a0765a6e06b2e188c68999a52b3fea976e72c40.tar.bz2
Move win_util.h from common to app.
http://crbug.com/11387 Review URL: http://codereview.chromium.org/113169 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@15694 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/visitedlink_master.cc')
-rw-r--r--chrome/browser/visitedlink_master.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/chrome/browser/visitedlink_master.cc b/chrome/browser/visitedlink_master.cc
index c22e866..54a3a22 100644
--- a/chrome/browser/visitedlink_master.cc
+++ b/chrome/browser/visitedlink_master.cc
@@ -13,6 +13,9 @@
#include <algorithm>
+#if defined(OS_WIN)
+#include "app/win_util.h"
+#endif
#include "base/file_util.h"
#include "base/logging.h"
#include "base/message_loop.h"
@@ -25,9 +28,6 @@
#include "chrome/browser/browser_process.h"
#include "chrome/browser/history/history.h"
#include "chrome/browser/profile.h"
-#if defined(OS_WIN)
-#include "chrome/common/win_util.h"
-#endif
using file_util::ScopedFILE;
using file_util::OpenFile;
@@ -95,7 +95,7 @@ class AsyncWriter : public Task {
// The write may not make it to the kernel (stdlib may buffer the write)
// until the next fseek/fclose call. If we crash, it's easy for our used
- // item count to be out of sync with the number of hashes we write.
+ // item count to be out of sync with the number of hashes we write.
// Protect against this by calling fflush.
int ret = fflush(file);
DCHECK_EQ(0, ret);