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

Side by Side Diff: blimp/client/feature/compositor/client_image_serialization_processor.cc

Issue 1955493002: Move BlimpImageSerializationProcessor and WebPDecoder to //blimp/client (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "blimp/client/feature/compositor/client_image_serialization_processor.h "
6
7 #include "blimp/client/feature/compositor/webp_decoder.h"
8 #include "third_party/skia/include/core/SkPicture.h"
9
10 class SkPixelSerializer;
11
12 namespace blimp {
13
14 ClientImageSerializationProcessor::ClientImageSerializationProcessor() {
15 pixel_deserializer_ = &WebPDecoder;
16 }
17
18 ClientImageSerializationProcessor::~ClientImageSerializationProcessor() {}
19
20 SkPixelSerializer* ClientImageSerializationProcessor::GetPixelSerializer() {
21 return nullptr;
22 }
23
24 SkPicture::InstallPixelRefProc
25 ClientImageSerializationProcessor::GetPixelDeserializer() {
26 return pixel_deserializer_;
27 }
28
29 } // namespace blimp
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698