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

Unified Diff: chrome_frame/chrome_protocol.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_plugin.h ('k') | chrome_frame/crash_reporting/minidump_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome_frame/chrome_protocol.cc
===================================================================
--- chrome_frame/chrome_protocol.cc (revision 62784)
+++ chrome_frame/chrome_protocol.cc (working copy)
@@ -16,7 +16,7 @@
IInternetBindInfo* bind_info,
DWORD flags,
DWORD reserved) {
- DLOG(INFO) << __FUNCTION__ << ": URL = " << url;
+ DVLOG(1) << __FUNCTION__ << ": URL = " << url;
prot_sink->ReportProgress(BINDSTATUS_VERIFIEDMIMETYPEAVAILABLE,
kChromeMimeType);
prot_sink->ReportData(
@@ -31,18 +31,18 @@
// apartment (or user interface) thread. This method is called in response
// to a call to IInternetProtocolSink::Switch.
STDMETHODIMP ChromeProtocol::Continue(PROTOCOLDATA* protocol_data) {
- DLOG(INFO) << __FUNCTION__;
+ DVLOG(1) << __FUNCTION__;
return S_OK;
}
// Aborts an operation in progress.
STDMETHODIMP ChromeProtocol::Abort(HRESULT reason, DWORD options) {
- DLOG(INFO) << __FUNCTION__;
+ DVLOG(1) << __FUNCTION__;
return S_OK;
}
STDMETHODIMP ChromeProtocol::Terminate(DWORD options) {
- DLOG(INFO) << __FUNCTION__;
+ DVLOG(1) << __FUNCTION__;
return S_OK;
}
@@ -57,7 +57,7 @@
STDMETHODIMP ChromeProtocol::Read(void* buffer,
ULONG buffer_size_in_bytes,
ULONG* bytes_read) {
- DLOG(INFO) << __FUNCTION__;
+ DVLOG(1) << __FUNCTION__;
return S_FALSE;
}
@@ -65,20 +65,20 @@
STDMETHODIMP ChromeProtocol::Seek(LARGE_INTEGER move_by,
DWORD origin,
ULARGE_INTEGER* new_position) {
- DLOG(INFO) << __FUNCTION__;
+ DVLOG(1) << __FUNCTION__;
return E_NOTIMPL;
}
// Locks the request so that IInternetProtocolRoot::Terminate ()
// can be called and the remaining data can be read.
STDMETHODIMP ChromeProtocol::LockRequest(DWORD options) {
- DLOG(INFO) << __FUNCTION__;
+ DVLOG(1) << __FUNCTION__;
return S_OK;
}
// Frees any resources associated with a lock. Called only if
// IInternetProtocol::LockRequest () was called.
STDMETHODIMP ChromeProtocol::UnlockRequest() {
- DLOG(INFO) << __FUNCTION__;
+ DVLOG(1) << __FUNCTION__;
return S_OK;
}
« no previous file with comments | « chrome_frame/chrome_frame_plugin.h ('k') | chrome_frame/crash_reporting/minidump_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698