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

Unified Diff: Source/WebCore/loader/icon/IconRecord.cpp

Issue 13643002: Rename LOG() to LOG_INFO() (Closed) Base URL: https://chromium.googlesource.com/chromium/blink@master
Patch Set: rebase Created 7 years, 8 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 | « Source/WebCore/loader/icon/IconLoader.cpp ('k') | Source/WebCore/platform/audio/FFTFrame.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/WebCore/loader/icon/IconRecord.cpp
diff --git a/Source/WebCore/loader/icon/IconRecord.cpp b/Source/WebCore/loader/icon/IconRecord.cpp
index 7e90d8e8cb80a0ddbd78edd0fc77ffdc67f03c15..92926a3c18a8d4404eaa14debc41f89f469b961b 100644
--- a/Source/WebCore/loader/icon/IconRecord.cpp
+++ b/Source/WebCore/loader/icon/IconRecord.cpp
@@ -50,7 +50,7 @@ IconRecord::IconRecord(const String& url)
IconRecord::~IconRecord()
{
- LOG(IconDatabase, "Destroying IconRecord for icon url %s", m_iconURL.ascii().data());
+ LOG_INFO(IconDatabase, "Destroying IconRecord for icon url %s", m_iconURL.ascii().data());
}
Image* IconRecord::image(const IntSize&)
@@ -70,7 +70,7 @@ void IconRecord::setImageData(PassRefPtr<SharedBuffer> data)
// Copy the provided data into the buffer of the new Image object.
if (!m_image->setData(data, true)) {
- LOG(IconDatabase, "Manual image data for iconURL '%s' FAILED - it was probably invalid image data", m_iconURL.ascii().data());
+ LOG_INFO(IconDatabase, "Manual image data for iconURL '%s' FAILED - it was probably invalid image data", m_iconURL.ascii().data());
m_image.clear();
}
« no previous file with comments | « Source/WebCore/loader/icon/IconLoader.cpp ('k') | Source/WebCore/platform/audio/FFTFrame.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698