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

Unified Diff: chrome_frame/http_negotiate.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/delete_chrome_history.cc ('k') | chrome_frame/metrics_service.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome_frame/http_negotiate.cc
===================================================================
--- chrome_frame/http_negotiate.cc (revision 62784)
+++ chrome_frame/http_negotiate.cc (working copy)
@@ -266,7 +266,7 @@
HRESULT HttpNegotiatePatch::BeginningTransaction(
IHttpNegotiate_BeginningTransaction_Fn original, IHttpNegotiate* me,
LPCWSTR url, LPCWSTR headers, DWORD reserved, LPWSTR* additional_headers) {
- DLOG(INFO) << __FUNCTION__ << " " << url << " headers:\n" << headers;
+ DVLOG(1) << __FUNCTION__ << " " << url << " headers:\n" << headers;
HRESULT hr = original(me, url, headers, reserved, additional_headers);
@@ -297,10 +297,10 @@
}
}
} else {
- DLOG(INFO) << "No IWebBrowser2";
+ DVLOG(1) << "No IWebBrowser2";
}
} else {
- DLOG(INFO) << "No NavigationManager";
+ DVLOG(1) << "No NavigationManager";
}
std::string updated(AppendCFUserAgentString(headers, *additional_headers));
@@ -345,8 +345,8 @@
HRESULT HttpNegotiatePatch::ReportProgress(
IInternetProtocolSink_ReportProgress_Fn original, IInternetProtocolSink* me,
ULONG status_code, LPCWSTR status_text) {
- DLOG(INFO) << __FUNCTION__
- << base::StringPrintf(" %i %ls", status_code, status_text);
+ DVLOG(1) << __FUNCTION__
+ << base::StringPrintf(" %i %ls", status_code, status_text);
bool updated_mime_type = false;
if (status_code == BINDSTATUS_MIMETYPEAVAILABLE ||
@@ -409,11 +409,11 @@
if (render_in_chrome_frame) {
if (IsTextHtmlMimeType(status_text)) {
- DLOG(INFO) << "- changing mime type to " << kChromeMimeType;
+ DVLOG(1) << "- changing mime type to " << kChromeMimeType;
status_text = kChromeMimeType;
updated_mime_type = true;
} else {
- DLOG(INFO) << "- don't want to render " << status_text << " in cf";
+ DVLOG(1) << "- don't want to render " << status_text << " in cf";
}
}
}
« no previous file with comments | « chrome_frame/delete_chrome_history.cc ('k') | chrome_frame/metrics_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698