| OLD | NEW |
| 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 Loading... |
| 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 |
| OLD | NEW |