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

Unified Diff: chrome_frame/chrome_frame_npapi.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_delegate.h ('k') | chrome_frame/chrome_frame_npapi_entrypoints.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome_frame/chrome_frame_npapi.cc
===================================================================
--- chrome_frame/chrome_frame_npapi.cc (revision 62784)
+++ chrome_frame/chrome_frame_npapi.cc (working copy)
@@ -425,9 +425,9 @@
void ChromeFrameNPAPI::OnAcceleratorPressed(int tab_handle,
const MSG& accel_message) {
- DLOG(INFO) << __FUNCTION__ << " msg:"
- << base::StringPrintf("0x%04X", accel_message.message) << " key:"
- << accel_message.wParam;
+ DVLOG(1) << __FUNCTION__
+ << " msg:" << base::StringPrintf("0x%04X", accel_message.message)
+ << " key:" << accel_message.wParam;
// The host browser does call TranslateMessage on messages like WM_KEYDOWN
// WM_KEYUP, etc, which will result in messages like WM_CHAR, WM_SYSCHAR, etc
@@ -455,7 +455,7 @@
}
void ChromeFrameNPAPI::OnTabbedOut(int tab_handle, bool reverse) {
- DLOG(INFO) << __FUNCTION__;
+ DVLOG(1) << __FUNCTION__;
ignore_setfocus_ = true;
HWND parent = ::GetParent(m_hWnd);
@@ -731,13 +731,13 @@
}
void ChromeFrameNPAPI::OnFocus() {
- DLOG(INFO) << __FUNCTION__;
+ DVLOG(1) << __FUNCTION__;
PostMessage(WM_SETFOCUS, 0, 0);
}
void ChromeFrameNPAPI::OnEvent(const char* event_name) {
DCHECK(event_name);
- DLOG(INFO) << event_name;
+ DVLOG(1) << event_name;
if (lstrcmpiA(event_name, "focus") == 0) {
OnFocus();
@@ -778,11 +778,11 @@
}
void ChromeFrameNPAPI::OnBlur() {
- DLOG(INFO) << __FUNCTION__;
+ DVLOG(1) << __FUNCTION__;
}
void ChromeFrameNPAPI::OnLoad(int, const GURL& gurl) {
- DLOG(INFO) << "Firing onload";
+ DVLOG(1) << "Firing onload";
FireEvent("load", gurl.spec());
}
« no previous file with comments | « chrome_frame/chrome_frame_delegate.h ('k') | chrome_frame/chrome_frame_npapi_entrypoints.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698