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

Side by Side Diff: blimp/client/core/compositor/blob_channel_feature.cc

Issue 2598963005: Include-what-you-use for WrapUnique/MakeUnique. (Closed)
Patch Set: restore order of includes in x11_topmost_window_finder_interactive_uitest.cc Created 3 years, 12 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 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 #include "blimp/client/core/compositor/blob_channel_feature.h" 5 #include "blimp/client/core/compositor/blob_channel_feature.h"
6 6
7 #include "base/memory/ptr_util.h"
7 #include "blimp/common/blob_cache/in_memory_blob_cache.h" 8 #include "blimp/common/blob_cache/in_memory_blob_cache.h"
8 #include "blimp/common/proto/blimp_message.pb.h" 9 #include "blimp/common/proto/blimp_message.pb.h"
9 #include "blimp/net/blob_channel/blob_channel_receiver.h" 10 #include "blimp/net/blob_channel/blob_channel_receiver.h"
10 #include "blimp/net/blob_channel/helium_blob_receiver_delegate.h" 11 #include "blimp/net/blob_channel/helium_blob_receiver_delegate.h"
11 12
12 namespace blimp { 13 namespace blimp {
13 namespace client { 14 namespace client {
14 15
15 BlobChannelFeature::BlobChannelFeature( 16 BlobChannelFeature::BlobChannelFeature(
16 BlobImageSerializationProcessor::ErrorDelegate* delegate) { 17 BlobImageSerializationProcessor::ErrorDelegate* delegate) {
(...skipping 19 matching lines...) Expand all
36 std::unique_ptr<BlimpMessage> message, 37 std::unique_ptr<BlimpMessage> message,
37 const net::CompletionCallback& callback) { 38 const net::CompletionCallback& callback) {
38 DCHECK(incoming_msg_processor_); 39 DCHECK(incoming_msg_processor_);
39 40
40 // Forward the message to |incoming_msg_processor_|. 41 // Forward the message to |incoming_msg_processor_|.
41 incoming_msg_processor_->ProcessMessage(std::move(message), callback); 42 incoming_msg_processor_->ProcessMessage(std::move(message), callback);
42 } 43 }
43 44
44 } // namespace client 45 } // namespace client
45 } // namespace blimp 46 } // namespace blimp
OLDNEW
« no previous file with comments | « blimp/client/core/compositor/blimp_compositor_unittest.cc ('k') | blimp/client/core/contents/blimp_contents_impl_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698