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

Unified Diff: third_party/WebKit/Source/core/html/HTMLPlugInElement.cpp

Issue 1845533002: Remove HTMLPlugin WTF logging. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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 | « no previous file | third_party/WebKit/Source/platform/Logging.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/html/HTMLPlugInElement.cpp
diff --git a/third_party/WebKit/Source/core/html/HTMLPlugInElement.cpp b/third_party/WebKit/Source/core/html/HTMLPlugInElement.cpp
index 16e4c983d00fd74ec6d806231998d25859e51852..9a80a15d62cfbf0a9c1c0ff2d0864e10ea4ec9cf 100644
--- a/third_party/WebKit/Source/core/html/HTMLPlugInElement.cpp
+++ b/third_party/WebKit/Source/core/html/HTMLPlugInElement.cpp
@@ -507,8 +507,8 @@ bool HTMLPlugInElement::loadPlugin(const KURL& url, const String& mimeType, cons
if ((layoutItem.isNull() && requireLayoutObject) || useFallback)
return false;
- WTF_LOG(Plugins, "%p Plugin URL: %s", this, m_url.utf8().data());
- WTF_LOG(Plugins, " Loaded URL: %s", url.getString().utf8().data());
+ VLOG(1) << this << " Plugin URL: " << m_url.utf8().data();
tkent 2016/03/30 02:16:29 m_url.utf8().data() > m_url
dtapuska 2016/03/30 02:30:12 Done.
+ VLOG(1) << "Loaded URL: " << url.getString().utf8().data();
tkent 2016/03/30 02:16:29 url.getString().utf8().data() -> url.getString()
dtapuska 2016/03/30 02:30:11 Done.
m_loadedUrl = url;
if (m_persistedPluginWidget) {
« no previous file with comments | « no previous file | third_party/WebKit/Source/platform/Logging.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698