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

Unified Diff: chrome/browser/extensions/crx_installer.cc

Issue 256593006: Revert LOGs inadvertantly added in r265615. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 6 years, 8 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/extensions/crx_installer.cc
diff --git a/chrome/browser/extensions/crx_installer.cc b/chrome/browser/extensions/crx_installer.cc
index ead5aa816bab91b37821a47bd774d1a6b933a2d3..f419eab38665ea39cbda5627996314b25a058d76 100644
--- a/chrome/browser/extensions/crx_installer.cc
+++ b/chrome/browser/extensions/crx_installer.cc
@@ -167,7 +167,6 @@ CrxInstaller::CrxInstaller(
}
CrxInstaller::~CrxInstaller() {
- LOG(WARNING) << "Destroying";
// Make sure the UI is deleted on the ui thread.
if (client_) {
BrowserThread::DeleteSoon(BrowserThread::UI, FROM_HERE, client_);
@@ -836,7 +835,6 @@ void CrxInstaller::NotifyCrxInstallComplete(bool success) {
void CrxInstaller::CleanupTempFiles() {
if (!installer_task_runner_->RunsTasksOnCurrentThread()) {
- LOG(WARNING) << "Post CleanupTempFiles";
if (!installer_task_runner_->PostTask(
FROM_HERE,
base::Bind(&CrxInstaller::CleanupTempFiles, this))) {
@@ -845,7 +843,6 @@ void CrxInstaller::CleanupTempFiles() {
return;
}
- LOG(WARNING) << "CleanupTempFiles";
// Delete the temp directory and crx file as necessary.
if (!temp_dir_.value().empty()) {
file_util::DeleteFile(temp_dir_, true);
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698