diff options
author | thestig <thestig@chromium.org> | 2014-08-23 15:18:53 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2014-08-23 22:19:28 +0000 |
commit | d19a1692e6b582d8caf07e24c77e95b0e3355d0f (patch) | |
tree | ac22b595f085e2425fa4f38561e35ea101a0ec37 /chrome/installer/util/delete_after_reboot_helper.cc | |
parent | f080b5b78fd221901d34f179100bdf0e6827aa31 (diff) | |
download | chromium_src-d19a1692e6b582d8caf07e24c77e95b0e3355d0f.zip chromium_src-d19a1692e6b582d8caf07e24c77e95b0e3355d0f.tar.gz chromium_src-d19a1692e6b582d8caf07e24c77e95b0e3355d0f.tar.bz2 |
Change base/file_utils.h includes to base/files/file_utils.h in chrome/, part 2.
Review URL: https://codereview.chromium.org/497083004
Cr-Commit-Position: refs/heads/master@{#291609}
Diffstat (limited to 'chrome/installer/util/delete_after_reboot_helper.cc')
-rw-r--r-- | chrome/installer/util/delete_after_reboot_helper.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome/installer/util/delete_after_reboot_helper.cc b/chrome/installer/util/delete_after_reboot_helper.cc index fb7956e..b298d6a 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(); + 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 |