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

Unified Diff: chrome_frame/chrome_frame_activex_base.h

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.cc ('k') | chrome_frame/chrome_frame_automation.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome_frame/chrome_frame_activex_base.h
===================================================================
--- chrome_frame/chrome_frame_activex_base.h (revision 62784)
+++ chrome_frame/chrome_frame_activex_base.h (working copy)
@@ -283,7 +283,7 @@
#ifndef NDEBUG
wchar_t buffer[64] = {0};
::StringFromGUID2(riid, buffer, arraysize(buffer));
- DLOG(INFO) << "E_NOINTERFACE: " << buffer;
+ DVLOG(1) << "E_NOINTERFACE: " << buffer;
#endif
return E_NOINTERFACE;
}
@@ -403,7 +403,7 @@
} else {
ChromeFramePlugin::GetProfilePath(profile_name, profile_path);
}
- DLOG(INFO) << __FUNCTION__ << ": " << profile_path->value();
+ DVLOG(1) << __FUNCTION__ << ": " << profile_path->value();
}
@@ -532,7 +532,7 @@
LRESULT OnDestroy(UINT message, WPARAM wparam, LPARAM lparam,
BOOL& handled) { // NO_LINT
- DLOG(INFO) << __FUNCTION__;
+ DVLOG(1) << __FUNCTION__;
return 0;
}
@@ -548,7 +548,7 @@
// ChromeFrameDelegate override
virtual void OnAutomationServerLaunchFailed(
AutomationLaunchResult reason, const std::string& server_version) {
- DLOG(INFO) << __FUNCTION__;
+ DVLOG(1) << __FUNCTION__;
if (reason == AUTOMATION_SERVER_CRASHED)
draw_sad_tab_ = true;
@@ -678,7 +678,7 @@
}
STDMETHOD(get_readyState)(long* ready_state) { // NOLINT
- DLOG(INFO) << __FUNCTION__;
+ DVLOG(1) << __FUNCTION__;
DCHECK(ready_state);
if (!ready_state)
@@ -1075,8 +1075,8 @@
if (hr != S_OK)
hr = AllowFrameToTranslateAccelerator(accel_message);
- DLOG(INFO) << __FUNCTION__ << " browser response: "
- << base::StringPrintf("0x%08x", hr);
+ DVLOG(1) << __FUNCTION__ << " browser response: "
+ << base::StringPrintf("0x%08x", hr);
if (hr != S_OK) {
// The WM_SYSCHAR message is not processed by the IOleControlSite
« no previous file with comments | « chrome_frame/chrome_frame_activex.cc ('k') | chrome_frame/chrome_frame_automation.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698