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

Unified Diff: blimp/client/feature/compositor/blimp_image_decoder.h

Issue 1982893002: [blimp] Add SkPicture caching support. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix memory leak by adding virtual destructor Created 4 years, 6 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
Index: blimp/client/feature/compositor/blimp_image_decoder.h
diff --git a/blimp/client/feature/compositor/blimp_image_decoder.h b/blimp/client/feature/compositor/blimp_image_decoder.h
index e7f6c81f436ced4dace5593b706ea83610d4a055..838c84134c30926c907f85adbc32ab6f6c76c725 100644
--- a/blimp/client/feature/compositor/blimp_image_decoder.h
+++ b/blimp/client/feature/compositor/blimp_image_decoder.h
@@ -12,10 +12,10 @@ class SkBitmap;
namespace blimp {
namespace client {
-// BlimpImageDecoder is an implementation of SkPicture::InstallPixelRefProc
+// DecodeBlimpImage is an implementation of SkPicture::InstallPixelRefProc
// which is used by the client to decode WebP images that are part of an
// SkPicture.
-bool BlimpImageDecoder(const void* input, size_t input_size, SkBitmap* bitmap);
+bool DecodeBlimpImage(const void* input, size_t input_size, SkBitmap* bitmap);
} // namespace client
} // namespace blimp

Powered by Google App Engine
This is Rietveld 408576698