| 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" | 6 #include "remoting/base/multiple_array_input_stream.h" |
| 7 #include "remoting/proto/control.pb.h" | 7 #include "remoting/proto/control.pb.h" |
| 8 #include "remoting/proto/event.pb.h" | 8 #include "remoting/proto/event.pb.h" |
| 9 #include "remoting/proto/video.pb.h" | |
| 10 #include "remoting/protocol/chromotocol_connection.h" | 9 #include "remoting/protocol/chromotocol_connection.h" |
| 11 #include "remoting/protocol/host_message_dispatcher.h" | 10 #include "remoting/protocol/host_message_dispatcher.h" |
| 12 #include "remoting/protocol/host_control_message_handler.h" | 11 #include "remoting/protocol/host_control_message_handler.h" |
| 13 #include "remoting/protocol/host_event_message_handler.h" | 12 #include "remoting/protocol/host_event_message_handler.h" |
| 14 #include "remoting/protocol/message_reader.h" | 13 #include "remoting/protocol/message_reader.h" |
| 15 | 14 |
| 16 namespace remoting { | 15 namespace remoting { |
| 17 | 16 |
| 18 HostMessageDispatcher::HostMessageDispatcher() { | 17 HostMessageDispatcher::HostMessageDispatcher() { |
| 19 } | 18 } |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 ref_msg)); | 56 ref_msg)); |
| 58 } | 57 } |
| 59 } | 58 } |
| 60 | 59 |
| 61 void HostMessageDispatcher::OnEventMessageReceived( | 60 void HostMessageDispatcher::OnEventMessageReceived( |
| 62 ClientEventMessage* message) { | 61 ClientEventMessage* message) { |
| 63 // TODO(hclam): Implement. | 62 // TODO(hclam): Implement. |
| 64 } | 63 } |
| 65 | 64 |
| 66 } // namespace remoting | 65 } // namespace remoting |
| OLD | NEW |