| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 "net/base/io_buffer.h" | 5 #include "net/base/io_buffer.h" |
| 6 #include "remoting/base/multiple_array_input_stream.h" | |
| 7 #include "remoting/proto/control.pb.h" | 6 #include "remoting/proto/control.pb.h" |
| 8 #include "remoting/proto/event.pb.h" | 7 #include "remoting/proto/event.pb.h" |
| 9 #include "remoting/protocol/host_message_dispatcher.h" | 8 #include "remoting/protocol/host_message_dispatcher.h" |
| 10 #include "remoting/protocol/host_stub.h" | 9 #include "remoting/protocol/host_stub.h" |
| 11 #include "remoting/protocol/input_stub.h" | 10 #include "remoting/protocol/input_stub.h" |
| 12 #include "remoting/protocol/message_reader.h" | 11 #include "remoting/protocol/message_reader.h" |
| 13 #include "remoting/protocol/session.h" | 12 #include "remoting/protocol/session.h" |
| 14 | 13 |
| 15 namespace { | 14 namespace { |
| 16 | 15 |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 82 } | 81 } |
| 83 } | 82 } |
| 84 | 83 |
| 85 void HostMessageDispatcher::OnEventMessageReceived( | 84 void HostMessageDispatcher::OnEventMessageReceived( |
| 86 EventMessage* message) { | 85 EventMessage* message) { |
| 87 // TODO(hclam): Implement. | 86 // TODO(hclam): Implement. |
| 88 } | 87 } |
| 89 | 88 |
| 90 } // namespace protocol | 89 } // namespace protocol |
| 91 } // namespace remoting | 90 } // namespace remoting |
| OLD | NEW |