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

Side by Side Diff: blimp/client/session/tab_control_feature.cc

Issue 1570943002: [Blimp client] Move client code into blimp::client namespace (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 11 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/client/session/tab_control_feature.h" 5 #include "blimp/client/session/tab_control_feature.h"
6 6
7 #include "blimp/common/create_blimp_message.h" 7 #include "blimp/common/create_blimp_message.h"
8 #include "blimp/common/proto/blimp_message.pb.h" 8 #include "blimp/common/proto/blimp_message.pb.h"
9 #include "blimp/common/proto/tab_control.pb.h" 9 #include "blimp/common/proto/tab_control.pb.h"
10 #include "blimp/net/blimp_message_processor.h" 10 #include "blimp/net/blimp_message_processor.h"
11 11
12 namespace blimp { 12 namespace blimp {
13 namespace client {
13 14
14 TabControlFeature::TabControlFeature() {} 15 TabControlFeature::TabControlFeature() {}
15 16
16 TabControlFeature::~TabControlFeature() {} 17 TabControlFeature::~TabControlFeature() {}
17 18
18 void TabControlFeature::set_outgoing_message_processor( 19 void TabControlFeature::set_outgoing_message_processor(
19 scoped_ptr<BlimpMessageProcessor> processor) { 20 scoped_ptr<BlimpMessageProcessor> processor) {
20 outgoing_message_processor_ = std::move(processor); 21 outgoing_message_processor_ = std::move(processor);
21 } 22 }
22 23
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 outgoing_message_processor_->ProcessMessage(std::move(message), 57 outgoing_message_processor_->ProcessMessage(std::move(message),
57 net::CompletionCallback()); 58 net::CompletionCallback());
58 } 59 }
59 60
60 void TabControlFeature::ProcessMessage( 61 void TabControlFeature::ProcessMessage(
61 scoped_ptr<BlimpMessage> message, 62 scoped_ptr<BlimpMessage> message,
62 const net::CompletionCallback& callback) { 63 const net::CompletionCallback& callback) {
63 NOTIMPLEMENTED(); 64 NOTIMPLEMENTED();
64 } 65 }
65 66
67 } // namespace client
66 } // namespace blimp 68 } // namespace blimp
OLDNEW
« no previous file with comments | « blimp/client/session/tab_control_feature.h ('k') | blimp/client/session/tab_control_feature_android.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698