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

Unified Diff: chrome_frame/bind_status_callback_impl.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/bho.cc ('k') | chrome_frame/buggy_bho_handling.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome_frame/bind_status_callback_impl.cc
===================================================================
--- chrome_frame/bind_status_callback_impl.cc (revision 62784)
+++ chrome_frame/bind_status_callback_impl.cc (working copy)
@@ -9,11 +9,11 @@
#include "base/stringprintf.h"
BSCBImpl::BSCBImpl() {
- DLOG(INFO) << __FUNCTION__ << me();
+ DVLOG(1) << __FUNCTION__ << me();
}
BSCBImpl::~BSCBImpl() {
- DLOG(INFO) << __FUNCTION__ << me();
+ DVLOG(1) << __FUNCTION__ << me();
}
std::string BSCBImpl::me() {
@@ -75,8 +75,8 @@
// IBindStatusCallback
HRESULT BSCBImpl::OnStartBinding(DWORD reserved, IBinding* binding) {
- DLOG(INFO) << __FUNCTION__ << me() << base::StringPrintf(" tid=%i",
- PlatformThread::CurrentId());
+ DVLOG(1) << __FUNCTION__ << me()
+ << base::StringPrintf(" tid=%i", PlatformThread::CurrentId());
HRESULT hr = S_OK;
if (delegate_)
hr = delegate_->OnStartBinding(reserved, binding);
@@ -84,8 +84,8 @@
}
HRESULT BSCBImpl::GetPriority(LONG* priority) {
- DLOG(INFO) << __FUNCTION__ << me() << base::StringPrintf(" tid=%i",
- PlatformThread::CurrentId());
+ DVLOG(1) << __FUNCTION__ << me()
+ << base::StringPrintf(" tid=%i", PlatformThread::CurrentId());
HRESULT hr = S_OK;
if (delegate_)
hr = delegate_->GetPriority(priority);
@@ -93,8 +93,8 @@
}
HRESULT BSCBImpl::OnLowResource(DWORD reserved) {
- DLOG(INFO) << __FUNCTION__ << me() << base::StringPrintf(" tid=%i",
- PlatformThread::CurrentId());
+ DVLOG(1) << __FUNCTION__ << me()
+ << base::StringPrintf(" tid=%i", PlatformThread::CurrentId());
HRESULT hr = S_OK;
if (delegate_)
hr = delegate_->OnLowResource(reserved);
@@ -103,9 +103,9 @@
HRESULT BSCBImpl::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);
HRESULT hr = S_OK;
if (delegate_)
delegate_->OnProgress(progress, progress_max, status_code, status_text);
@@ -113,8 +113,9 @@
}
HRESULT BSCBImpl::OnStopBinding(HRESULT hresult, LPCWSTR error) {
- DLOG(INFO) << __FUNCTION__ << me() << base::StringPrintf(
- " hr=0x%08X '%ls' tid=%i", hresult, error, PlatformThread::CurrentId());
+ DVLOG(1) << __FUNCTION__ << me()
+ << base::StringPrintf(" hr=0x%08X '%ls' tid=%i", hresult, error,
+ PlatformThread::CurrentId());
HRESULT hr = S_OK;
if (delegate_)
delegate_->OnStopBinding(hresult, error);
@@ -122,8 +123,8 @@
}
HRESULT BSCBImpl::GetBindInfo(DWORD* bindf, BINDINFO* bind_info) {
- DLOG(INFO) << __FUNCTION__ << me() << base::StringPrintf(" tid=%i",
- PlatformThread::CurrentId());
+ DVLOG(1) << __FUNCTION__ << me()
+ << base::StringPrintf(" tid=%i", PlatformThread::CurrentId());
HRESULT hr = S_OK;
if (delegate_)
delegate_->GetBindInfo(bindf, bind_info);
@@ -132,8 +133,8 @@
HRESULT BSCBImpl::OnDataAvailable(DWORD bscf, DWORD size,
FORMATETC* format_etc, STGMEDIUM* stgmed) {
- DLOG(INFO) << __FUNCTION__ << me() << base::StringPrintf(" tid=%i",
- PlatformThread::CurrentId());
+ DVLOG(1) << __FUNCTION__ << me()
+ << base::StringPrintf(" tid=%i", PlatformThread::CurrentId());
HRESULT hr = S_OK;
if (delegate_)
hr = delegate_->OnDataAvailable(bscf, size, format_etc, stgmed);
@@ -141,8 +142,8 @@
}
HRESULT BSCBImpl::OnObjectAvailable(REFIID iid, IUnknown* unk) {
- DLOG(INFO) << __FUNCTION__ << me() << base::StringPrintf(" tid=%i",
- PlatformThread::CurrentId());
+ DVLOG(1) << __FUNCTION__ << me()
+ << base::StringPrintf(" tid=%i", PlatformThread::CurrentId());
HRESULT hr = S_OK;
if (delegate_)
delegate_->OnObjectAvailable(iid, unk);
@@ -152,8 +153,8 @@
// IBindStatusCallbackEx
HRESULT BSCBImpl::GetBindInfoEx(DWORD* bindf, BINDINFO* bind_info,
DWORD* bindf2, DWORD* reserved) {
- DLOG(INFO) << __FUNCTION__ << me() << base::StringPrintf(" tid=%i",
- PlatformThread::CurrentId());
+ DVLOG(1) << __FUNCTION__ << me()
+ << base::StringPrintf(" tid=%i", PlatformThread::CurrentId());
HRESULT hr = S_OK;
if (delegate_) {
ScopedComPtr<IBindStatusCallbackEx> bscbex;
@@ -167,8 +168,8 @@
HRESULT BSCBImpl::BeginningTransaction(LPCWSTR url, LPCWSTR headers,
DWORD reserved,
LPWSTR* additional_headers) {
- DLOG(INFO) << __FUNCTION__ << me() << base::StringPrintf(" tid=%i",
- PlatformThread::CurrentId());
+ DVLOG(1) << __FUNCTION__ << me()
+ << base::StringPrintf(" tid=%i", PlatformThread::CurrentId());
HRESULT hr = S_OK;
if (delegate_) {
@@ -187,8 +188,8 @@
HRESULT BSCBImpl::OnResponse(DWORD response_code, LPCWSTR response_headers,
LPCWSTR request_headers,
LPWSTR* additional_headers) {
- DLOG(INFO) << __FUNCTION__ << me() << base::StringPrintf(" tid=%i",
- PlatformThread::CurrentId());
+ DVLOG(1) << __FUNCTION__ << me()
+ << base::StringPrintf(" tid=%i", PlatformThread::CurrentId());
HRESULT hr = S_OK;
if (delegate_) {
« no previous file with comments | « chrome_frame/bho.cc ('k') | chrome_frame/buggy_bho_handling.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698