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

Unified Diff: chrome_frame/np_event_listener.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/metrics_service.cc ('k') | chrome_frame/npapi_url_request.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome_frame/np_event_listener.cc
===================================================================
--- chrome_frame/np_event_listener.cc (revision 62784)
+++ chrome_frame/np_event_listener.cc (working copy)
@@ -1,4 +1,4 @@
-// Copyright (c) 2009 The Chromium Authors. All rights reserved.
+// Copyright (c) 2010 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
@@ -116,7 +116,7 @@
// in webkit.
npapi::GetValue(instance, NPNVDOMElement, elem.Receive());
if (!elem.get()) {
- DLOG(INFO) << "Failed to get NPNVDOMElement";
+ DVLOG(1) << "Failed to get NPNVDOMElement";
return false;
}
@@ -177,10 +177,10 @@
object = NPVARIANT_TO_OBJECT(var);
}
} else {
- DLOG(INFO) << __FUNCTION__ << " got " << tag;
+ DVLOG(1) << __FUNCTION__ << " got " << tag;
}
} else {
- DLOG(INFO) << __FUNCTION__ << " failed to get the element's tag";
+ DVLOG(1) << __FUNCTION__ << " failed to get the element's tag";
}
} else {
DLOG(WARNING) << __FUNCTION__ << " failed to get NPNVPluginElementNPObject";
@@ -285,7 +285,7 @@
// Opera doesn't zero terminate its utf8 strings.
const NPString& type = NPVARIANT_TO_STRING(result);
std::string zero_terminated(type.UTF8Characters, type.UTF8Length);
- DLOG(INFO) << "handleEvent: " << zero_terminated;
+ DVLOG(1) << "handleEvent: " << zero_terminated;
delegate_->OnEvent(zero_terminated.c_str());
}
}
« no previous file with comments | « chrome_frame/metrics_service.cc ('k') | chrome_frame/npapi_url_request.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698