Searched defs:bitmap_b (Results 1 - 1 of 1) sorted by relevance

/external/chromium_org/chrome/browser/sync/test/integration/
H A Dbookmarks_helper.cc157 // Checks if the favicon data in |bitmap_a| and |bitmap_b| are equivalent.
160 const SkBitmap& bitmap_b) {
161 if (bitmap_a.getSize() == 0U && bitmap_b.getSize() == 0U)
163 if ((bitmap_a.getSize() != bitmap_b.getSize()) ||
164 (bitmap_a.width() != bitmap_b.width()) ||
165 (bitmap_a.height() != bitmap_b.height())) {
168 << bitmap_b.getSize() << " (" << bitmap_b.width() << "x"
169 << bitmap_b.height() << ")";
173 SkAutoLockPixels bitmap_lock_b(bitmap_b);
159 FaviconRawBitmapsMatch(const SkBitmap& bitmap_a, const SkBitmap& bitmap_b) argument
310 SkBitmap bitmap_b = image_b.AsImageSkia().GetRepresentation( local
[all...]

Completed in 95 milliseconds