summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndras Becsi <andras.becsi@theqtcompany.com>2015-07-30 17:33:20 +0200
committerAndras Becsi <andras.becsi@theqtcompany.com>2015-08-05 10:13:33 +0000
commit2bc8bc37f39b3b2029e2b75d5d7186e06552d376 (patch)
tree19a73f75c85248f37817783b3a8d6552c4c02b77
parent154d7a3611197845352b3e1d3ebeaf429d37e656 (diff)
downloadqtwebengine-chromium-2bc8bc37f39b3b2029e2b75d5d7186e06552d376.tar.gz
<third_party/skia> Remove a printf that pollutes the console on some pages
This seems to be a leftover debug line that's polluting the command line output on some pages, this is visible at least on OS X. Change-Id: Ie8c0f682b0f5a6e88688f3d3f207152e3fb95fe6 Reviewed-by: Peter Varga <pvarga@inf.u-szeged.hu>
-rw-r--r--chromium/third_party/skia/src/pipe/SkGPipeWrite.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/chromium/third_party/skia/src/pipe/SkGPipeWrite.cpp b/chromium/third_party/skia/src/pipe/SkGPipeWrite.cpp
index a8a21141ac4..7f8d61ca9fc 100644
--- a/chromium/third_party/skia/src/pipe/SkGPipeWrite.cpp
+++ b/chromium/third_party/skia/src/pipe/SkGPipeWrite.cpp
@@ -1449,7 +1449,6 @@ int32_t SkImageHeap::insert(const SkImage* img) {
// TODO: SkImage does not expose bytes per pixel, 4 is just a best guess.
fBytesInCache += img->width() * img->height() * 4;
*fArray.append() = SkRef(img);
- printf("Images reff'ed: %d \n", fArray.count());
return fArray.count(); // slot is always index+1
}