| 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 // This file defines utility methods used for encoding and decoding the protocol | 5 // This file defines utility methods used for encoding and decoding the protocol |
| 6 // used in Chromoting. | 6 // used in Chromoting. |
| 7 | 7 |
| 8 #ifndef REMOTING_PROTOCOL_UTIL_H_ | 8 #ifndef REMOTING_PROTOCOL_UTIL_H_ |
| 9 #define REMOTING_PROTOCOL_UTIL_H_ | 9 #define REMOTING_PROTOCOL_UTIL_H_ |
| 10 | 10 |
| 11 #include "google/protobuf/message_lite.h" | |
| 12 #include "net/base/io_buffer.h" | 11 #include "net/base/io_buffer.h" |
| 12 #include "third_party/protobuf/src/google/protobuf/message_lite.h" |
| 13 | 13 |
| 14 class Task; | 14 class Task; |
| 15 | 15 |
| 16 namespace remoting { | 16 namespace remoting { |
| 17 | 17 |
| 18 // Serialize the Protocol Buffer message and provide sufficient framing for | 18 // Serialize the Protocol Buffer message and provide sufficient framing for |
| 19 // sending it over the wire. | 19 // sending it over the wire. |
| 20 // This will provide sufficient prefix and suffix for the receiver side to | 20 // This will provide sufficient prefix and suffix for the receiver side to |
| 21 // decode the message. | 21 // decode the message. |
| 22 scoped_refptr<net::IOBufferWithSize> SerializeAndFrameMessage( | 22 scoped_refptr<net::IOBufferWithSize> SerializeAndFrameMessage( |
| 23 const google::protobuf::MessageLite& msg); | 23 const google::protobuf::MessageLite& msg); |
| 24 | 24 |
| 25 // Create a runnable task that deletes a message. | 25 // Create a runnable task that deletes a message. |
| 26 Task* NewDeleteMessageTask(google::protobuf::MessageLite* message); | 26 Task* NewDeleteMessageTask(google::protobuf::MessageLite* message); |
| 27 | 27 |
| 28 } // namespace remoting | 28 } // namespace remoting |
| 29 | 29 |
| 30 #endif // REMOTING_PROTOCOL_UTIL_H_ | 30 #endif // REMOTING_PROTOCOL_UTIL_H_ |
| OLD | NEW |