Index: chrome/installer/util/delete_after_reboot_helper.cc |
diff --git a/chrome/installer/util/delete_after_reboot_helper.cc b/chrome/installer/util/delete_after_reboot_helper.cc |
index fb7956ed2624e9db2a793058c3ac4e3ff168c66e..b298d6a21b7272bf5196a9405c26d67925392626 100644 |
--- a/chrome/installer/util/delete_after_reboot_helper.cc |
+++ b/chrome/installer/util/delete_after_reboot_helper.cc |
@@ -15,8 +15,8 @@ |
#include <string> |
#include <vector> |
-#include "base/file_util.h" |
#include "base/files/file_enumerator.h" |
+#include "base/files/file_util.h" |
#include "base/strings/string_util.h" |
#include "base/win/registry.h" |
@@ -81,10 +81,10 @@ bool ScheduleFileSystemEntityForDeletion(const base::FilePath& path) { |
GENERIC_READ | GENERIC_WRITE, 0, NULL, |
OPEN_EXISTING, 0, NULL); |
if (file != INVALID_HANDLE_VALUE) { |
- LOG(INFO) << " file not in use: " << path.value(); |
Lei Zhang
2014/08/23 02:02:31
presubmit complained, so I changed it and now you
|
+ VLOG(1) << " file not in use: " << path.value(); |
::CloseHandle(file); |
} else { |
- PLOG(INFO) << " file in use (or not found?): " << path.value(); |
+ PLOG(WARNING) << " file in use (or not found?): " << path.value(); |
} |
} |
#endif |