| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 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 | 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 #ifndef BLIMP_CLIENT_CORE_COMPOSITOR_BLOB_CHANNEL_FEATURE_H_ | 5 #ifndef BLIMP_CLIENT_CORE_COMPOSITOR_BLOB_CHANNEL_FEATURE_H_ |
| 6 #define BLIMP_CLIENT_CORE_COMPOSITOR_BLOB_CHANNEL_FEATURE_H_ | 6 #define BLIMP_CLIENT_CORE_COMPOSITOR_BLOB_CHANNEL_FEATURE_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 | 9 |
| 10 #include "base/macros.h" | 10 #include "base/macros.h" |
| 11 #include "blimp/client/core/compositor/blob_image_serialization_processor.h" | 11 #include "blimp/client/core/compositor/blob_image_serialization_processor.h" |
| 12 #include "blimp/client/core/compositor/decoding_image_generator.h" | |
| 13 #include "blimp/net/blimp_message_processor.h" | 12 #include "blimp/net/blimp_message_processor.h" |
| 14 | 13 |
| 15 namespace blimp { | 14 namespace blimp { |
| 16 | 15 |
| 17 class BlobChannelReceiver; | 16 class BlobChannelReceiver; |
| 18 | 17 |
| 19 namespace client { | 18 namespace client { |
| 20 | 19 |
| 21 // BlobChannelFeature processes incoming BlobChannel message from the engine and | 20 // BlobChannelFeature processes incoming BlobChannel message from the engine and |
| 22 // holds the cache of Blob payloads. | 21 // holds the cache of Blob payloads. |
| (...skipping 20 matching lines...) Expand all Loading... |
| 43 // |blob_receiver_|. | 42 // |blob_receiver_|. |
| 44 BlobImageSerializationProcessor blob_image_processor_; | 43 BlobImageSerializationProcessor blob_image_processor_; |
| 45 | 44 |
| 46 DISALLOW_COPY_AND_ASSIGN(BlobChannelFeature); | 45 DISALLOW_COPY_AND_ASSIGN(BlobChannelFeature); |
| 47 }; | 46 }; |
| 48 | 47 |
| 49 } // namespace client | 48 } // namespace client |
| 50 } // namespace blimp | 49 } // namespace blimp |
| 51 | 50 |
| 52 #endif // BLIMP_CLIENT_CORE_COMPOSITOR_BLOB_CHANNEL_FEATURE_H_ | 51 #endif // BLIMP_CLIENT_CORE_COMPOSITOR_BLOB_CHANNEL_FEATURE_H_ |
| OLD | NEW |