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

Unified Diff: chrome_frame/urlmon_bind_status_callback.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/test/test_with_web_server.cc ('k') | chrome_frame/urlmon_moniker.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome_frame/urlmon_bind_status_callback.cc
===================================================================
--- chrome_frame/urlmon_bind_status_callback.cc (revision 62784)
+++ chrome_frame/urlmon_bind_status_callback.cc (working copy)
@@ -196,9 +196,8 @@
}
}
}
- DLOG(INFO) << __FUNCTION__ << "Url: " << url_ <<
- base::StringPrintf("Renderer type: %s",
- renderer_type_ == CHROME ? "CHROME" : "OTHER");
+ DVLOG(1) << __FUNCTION__ << "Url: " << url_ << base::StringPrintf(
+ "Renderer type: %s", renderer_type_ == CHROME ? "CHROME" : "OTHER");
}
}
@@ -213,8 +212,8 @@
}
HRESULT BSCBStorageBind::Initialize(IMoniker* moniker, IBindCtx* bind_ctx) {
- DLOG(INFO) << __FUNCTION__ << me() << base::StringPrintf(" tid=%i",
- PlatformThread::CurrentId());
+ DVLOG(1) << __FUNCTION__ << me()
+ << base::StringPrintf(" tid=%i", PlatformThread::CurrentId());
std::wstring url = GetActualUrlFromMoniker(moniker, bind_ctx,
std::wstring());
@@ -238,9 +237,9 @@
STDMETHODIMP BSCBStorageBind::OnProgress(ULONG progress, ULONG progress_max,
ULONG status_code, LPCWSTR status_text) {
- DLOG(INFO) << __FUNCTION__ << me() << base::StringPrintf(
- " status=%i tid=%i %ls", status_code, PlatformThread::CurrentId(),
- status_text);
+ DVLOG(1) << __FUNCTION__ << me()
+ << base::StringPrintf(" status=%i tid=%i %ls", status_code,
+ PlatformThread::CurrentId(), status_text);
// Report all crashes in the exception handler if we wrap the callback.
// Note that this avoids having the VEH report a crash if an SEH earlier in
// the chain handles the exception.
@@ -273,8 +272,8 @@
STDMETHODIMP BSCBStorageBind::OnDataAvailable(DWORD flags, DWORD size,
FORMATETC* format_etc,
STGMEDIUM* stgmed) {
- DLOG(INFO) << __FUNCTION__ << base::StringPrintf(" tid=%i",
- PlatformThread::CurrentId());
+ DVLOG(1) << __FUNCTION__
+ << base::StringPrintf(" tid=%i", PlatformThread::CurrentId());
// Report all crashes in the exception handler if we wrap the callback.
// Note that this avoids having the VEH report a crash if an SEH earlier in
// the chain handles the exception.
@@ -316,8 +315,8 @@
}
STDMETHODIMP BSCBStorageBind::OnStopBinding(HRESULT hresult, LPCWSTR error) {
- DLOG(INFO) << __FUNCTION__ << base::StringPrintf(" tid=%i",
- PlatformThread::CurrentId());
+ DVLOG(1) << __FUNCTION__
+ << base::StringPrintf(" tid=%i", PlatformThread::CurrentId());
// Report all crashes in the exception handler if we wrap the callback.
// Note that this avoids having the VEH report a crash if an SEH earlier in
// the chain handles the exception.
« no previous file with comments | « chrome_frame/test/test_with_web_server.cc ('k') | chrome_frame/urlmon_moniker.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698