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

Unified Diff: chrome_frame/chrome_frame_automation.cc

Issue 3850002: Convert LOG(INFO) to VLOG(1) - chrome_frame/. (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_frame/chrome_frame_activex_base.h ('k') | chrome_frame/chrome_frame_delegate.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome_frame/chrome_frame_automation.cc
===================================================================
--- chrome_frame/chrome_frame_automation.cc (revision 62784)
+++ chrome_frame/chrome_frame_automation.cc (working copy)
@@ -223,7 +223,7 @@
}
AutomationProxyCacheEntry::~AutomationProxyCacheEntry() {
- DLOG(INFO) << __FUNCTION__ << profile_name;
+ DVLOG(1) << __FUNCTION__ << profile_name;
// Attempt to fix chrome_frame_tests crash seen at times on the IE6/IE7
// builders. It appears that there are cases when we can enter here when the
// AtExitManager is tearing down the global ProxyCache which causes a crash
@@ -295,7 +295,7 @@
if (IsAccessibleMode())
command_line->AppendSwitch(switches::kForceRendererAccessibility);
- DLOG(INFO) << "Profile path: " << params->profile_path().value();
+ DVLOG(1) << "Profile path: " << params->profile_path().value();
command_line->AppendSwitchPath(switches::kUserDataDir,
params->profile_path());
@@ -471,7 +471,7 @@
}
if (entry == NULL) {
- DLOG(INFO) << __FUNCTION__ << " creating new proxy entry";
+ DVLOG(1) << __FUNCTION__ << " creating new proxy entry";
entry = new AutomationProxyCacheEntry(params, delegate);
proxies_.container().push_back(entry);
@@ -1002,7 +1002,7 @@
DCHECK(init_state_ == INITIALIZING);
automation_server_ = proxy;
} else {
- DLOG(INFO) << "Not storing automation server pointer due to shutting down";
+ DVLOG(1) << "Not storing automation server pointer due to shutting down";
}
if (result == AUTOMATION_SUCCESS) {
@@ -1025,7 +1025,7 @@
automation_server_->SendAsAsync(message,
new CreateExternalTabContext(this),
this);
- DLOG(INFO) << __FUNCTION__ << ": sending CreateExternalTabComplete";
+ DVLOG(1) << __FUNCTION__ << ": sending CreateExternalTabComplete";
}
}
} else {
« no previous file with comments | « chrome_frame/chrome_frame_activex_base.h ('k') | chrome_frame/chrome_frame_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698