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

Unified Diff: chrome/browser/translate/chrome_translate_client.cc

Issue 701483002: [chrome/browser/translate, chrome/browser/thumbnails] Convert VLOGs to DVLOGs (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed comments Created 6 years, 1 month 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
Index: chrome/browser/translate/chrome_translate_client.cc
diff --git a/chrome/browser/translate/chrome_translate_client.cc b/chrome/browser/translate/chrome_translate_client.cc
index 9356f448190ebb6efe00e04fbf7d5a4baa9ad1e2..83f764a1b577f757250b2325a8ecb738bdca7a57 100644
--- a/chrome/browser/translate/chrome_translate_client.cc
+++ b/chrome/browser/translate/chrome_translate_client.cc
@@ -67,7 +67,7 @@ ChromeTranslateClient::ChromeTranslateClient(content::WebContents* web_contents)
// CLD data immediately on startup.
if (translate::CldDataSource::ShouldUseStandaloneDataFile() &&
!g_cld_file_path_initialized_) {
- VLOG(1) << "Initializing CLD file path for the first time.";
+ DVLOG(1) << "Initializing CLD file path for the first time.";
base::FilePath path;
if (!PathService::Get(chrome::DIR_USER_DATA, &path)) {
// Chrome isn't properly installed
@@ -75,7 +75,7 @@ ChromeTranslateClient::ChromeTranslateClient(content::WebContents* web_contents)
} else {
g_cld_file_path_initialized_ = true;
path = path.Append(kCldDataFileName);
- VLOG(1) << "Setting CLD data file path: " << path.value();
+ DVLOG(1) << "Setting CLD data file path: " << path.value();
translate::SetCldDataFilePath(path);
}
}
« no previous file with comments | « chrome/browser/thumbnails/thumbnail_tab_helper.cc ('k') | chrome/browser/translate/component_cld_data_harness.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698