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

Unified Diff: remoting/protocol/client_control_sender.cc

Issue 5068001: Move move classes to the remoting::protocol namespace. Minor cleanups. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: more fixes for windows Created 10 years, 1 month 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 side-by-side diff with in-line comments
Download patch
Index: remoting/protocol/client_control_sender.cc
diff --git a/remoting/protocol/client_control_sender.cc b/remoting/protocol/client_control_sender.cc
index 8fff96762065c9ab229791cc78b3f4e536e9e6f4..d1fd2f5fd5ad3ca84181f2cd3edc89b8b8b1475d 100644
--- a/remoting/protocol/client_control_sender.cc
+++ b/remoting/protocol/client_control_sender.cc
@@ -10,6 +10,7 @@
#include "base/task.h"
#include "remoting/protocol/buffered_socket_writer.h"
#include "remoting/proto/control.pb.h"
+#include "remoting/proto/internal.pb.h"
Alpha Left Google 2010/12/02 19:41:59 why is this needed?
Sergey Ulanov 2010/12/02 20:06:40 Because I moved ControlMessage to internal.proto.
#include "remoting/protocol/util.h"
namespace remoting {
@@ -25,7 +26,7 @@ ClientControlSender::~ClientControlSender() {
void ClientControlSender::NotifyResolution(
const NotifyResolutionRequest* msg, Task* done) {
- ControlMessage message;
+ protocol::ControlMessage message;
message.mutable_notify_resolution()->CopyFrom(*msg);
buffered_writer_->Write(SerializeAndFrameMessage(message));
done->Run();

Powered by Google App Engine
This is Rietveld 408576698