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

Side by Side Diff: blimp/engine/renderer/blimp_content_renderer_client.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 unified diff | Download patch
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "blimp/engine/renderer/blimp_content_renderer_client.h" 5 #include "blimp/engine/renderer/blimp_content_renderer_client.h"
6 6
7 #include "blimp/common/compositor/blimp_image_serialization_processor.h"
8 #include "blimp/engine/mojo/blob_channel.mojom.h" 7 #include "blimp/engine/mojo/blob_channel.mojom.h"
9 #include "blimp/engine/renderer/engine_image_serialization_processor.h" 8 #include "blimp/engine/renderer/engine_image_serialization_processor.h"
10 #include "components/web_cache/renderer/web_cache_render_thread_observer.h" 9 #include "components/web_cache/renderer/web_cache_render_thread_observer.h"
11 #include "content/public/common/service_registry.h" 10 #include "content/public/common/service_registry.h"
12 #include "content/public/renderer/render_thread.h" 11 #include "content/public/renderer/render_thread.h"
13 12
14 namespace blimp { 13 namespace blimp {
15 namespace engine { 14 namespace engine {
16 namespace { 15 namespace {
17 16
(...skipping 17 matching lines...) Expand all
35 new EngineImageSerializationProcessor(GetConnectedBlobChannel())); 34 new EngineImageSerializationProcessor(GetConnectedBlobChannel()));
36 } 35 }
37 36
38 cc::ImageSerializationProcessor* 37 cc::ImageSerializationProcessor*
39 BlimpContentRendererClient::GetImageSerializationProcessor() { 38 BlimpContentRendererClient::GetImageSerializationProcessor() {
40 return image_serialization_processor_.get(); 39 return image_serialization_processor_.get();
41 } 40 }
42 41
43 } // namespace engine 42 } // namespace engine
44 } // namespace blimp 43 } // namespace blimp
OLDNEW
« no previous file with comments | « blimp/common/compositor/webp_decoder.cc ('k') | blimp/engine/renderer/engine_image_serialization_processor.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698