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

Unified Diff: chrome/test/mini_installer_test/mini_installer_test_util.cc

Issue 3915004: Convert LOG(INFO) to VLOG(1) - chrome/test/. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 10 years, 2 months 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 | « chrome/test/memory_test/memory_test.cc ('k') | chrome/test/page_cycler/page_cycler_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/mini_installer_test/mini_installer_test_util.cc
===================================================================
--- chrome/test/mini_installer_test/mini_installer_test_util.cc (revision 63075)
+++ chrome/test/mini_installer_test/mini_installer_test_util.cc (working copy)
@@ -81,7 +81,7 @@
return_command->append(mini_installer_constants::kStandaloneInstaller);
return_command->append(L" ");
return_command->append(mini_installer_constants::kChromeApplyTagParameters);
- LOG(INFO) << "Command to run Apply tag: " << return_command->c_str();
+ VLOG(1) << "Command to run Apply tag: " << return_command->c_str();
return true;
}
@@ -89,7 +89,7 @@
FilePath installer_path;
PathService::Get(base::DIR_EXE, &installer_path);
installer_path = installer_path.Append(exe_name);
- LOG(INFO) << "Chrome exe path: " << installer_path.value().c_str();
+ VLOG(1) << "Chrome exe path: " << installer_path.value().c_str();
return installer_path.ToWStringHack();
}
@@ -136,7 +136,7 @@
WIN32_FIND_DATA find_file_data;
HANDLE file_handle = FindFirstFile(file_name, &find_file_data);
if (file_handle == INVALID_HANDLE_VALUE) {
- LOG(INFO) << "Handle is invalid.";
+ VLOG(1) << "Handle is invalid.";
return false;
}
BOOL ret = TRUE;
@@ -248,7 +248,7 @@
file_name.replace(pos, 1, L".");
file_name = L"3.0." + file_name;
return_file_name->assign(file_name.c_str());
- LOG(INFO) << "Standalone installer version: " << file_name.c_str();
+ VLOG(1) << "Standalone installer version: " << file_name.c_str();
return true;
}
@@ -288,14 +288,14 @@
const wchar_t* process_name) {
int timer = 0;
if (base::GetProcessCount(process_name, NULL) > 0) {
- LOG(INFO) << "Waiting for this process to end: " << process_name;
+ VLOG(1) << "Waiting for this process to end: " << process_name;
while ((base::GetProcessCount(process_name, NULL) > 0) &&
(timer < TestTimeouts::large_test_timeout_ms())) {
PlatformThread::Sleep(200);
timer = timer + 200;
}
} else {
- if (base::GetProcessCount(process_name, NULL) != 0)
+ if (base::GetProcessCount(process_name, NULL) != 0)
return false;
}
return true;
« no previous file with comments | « chrome/test/memory_test/memory_test.cc ('k') | chrome/test/page_cycler/page_cycler_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698