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

Unified Diff: blimp/client/feature/compositor/decoding_image_generator.cc

Issue 1955493002: Move BlimpImageSerializationProcessor and WebPDecoder to //blimp/client (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed comments, moved to blimp::client namespace, renamed webp_decoder.[cc|h] according to func… Created 4 years, 7 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 | « blimp/client/feature/compositor/client_image_serialization_processor.cc ('k') | blimp/common/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: blimp/client/feature/compositor/decoding_image_generator.cc
diff --git a/blimp/client/feature/compositor/decoding_image_generator.cc b/blimp/client/feature/compositor/decoding_image_generator.cc
index 5ceab09e2085793293b223b82b0325d29cec6ce0..eaa4f9545be347fd9ceae8858beb48ef608dcc8c 100644
--- a/blimp/client/feature/compositor/decoding_image_generator.cc
+++ b/blimp/client/feature/compositor/decoding_image_generator.cc
@@ -5,7 +5,7 @@
#include "blimp/client/feature/compositor/decoding_image_generator.h"
#include "base/numerics/safe_conversions.h"
-#include "blimp/common/compositor/webp_decoder.h"
+#include "blimp/client/feature/compositor/blimp_image_decoder.h"
#include "blimp/common/proto/blob_cache.pb.h"
#include "third_party/libwebp/webp/decode.h"
#include "third_party/libwebp/webp/demux.h"
@@ -34,7 +34,7 @@ DecodingImageGenerator::DecodingImageGenerator(const SkImageInfo info,
const void* data,
size_t size)
: SkImageGenerator(info) {
- WebPDecoder(data, size, &decoded_bitmap_);
+ BlimpImageDecoder(data, size, &decoded_bitmap_);
}
DecodingImageGenerator::~DecodingImageGenerator() {}
« no previous file with comments | « blimp/client/feature/compositor/client_image_serialization_processor.cc ('k') | blimp/common/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698