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

Side by Side Diff: remoting/protocol/util.cc

Issue 9600066: Roll libjingle to r124 and roll webrtc to 1888. (Closed) Base URL: https://src.chromium.org/svn/trunk/src/
Patch Set: Created 8 years, 9 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
« no previous file with comments | « remoting/protocol/rtp_utils.cc ('k') | third_party/libjingle/README.chromium » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 "remoting/protocol/util.h" 5 #include "remoting/protocol/util.h"
6 6
7 #include "base/basictypes.h" 7 #include "base/basictypes.h"
8 #include "base/hash_tables.h" 8 #include "base/hash_tables.h"
9 #include "base/logging.h" 9 #include "base/logging.h"
10 #include "net/base/io_buffer.h" 10 #include "net/base/io_buffer.h"
11 #include "third_party/libjingle/overrides/talk/base/byteorder.h" 11 #include "third_party/libjingle/source/talk/base/byteorder.h"
12 12
13 namespace { 13 namespace {
14 14
15 void DeleteMessage(google::protobuf::MessageLite* message) { 15 void DeleteMessage(google::protobuf::MessageLite* message) {
16 delete message; 16 delete message;
17 } 17 }
18 18
19 } // namespace 19 } // namespace
20 20
21 namespace remoting { 21 namespace remoting {
22 namespace protocol { 22 namespace protocol {
23 23
24 scoped_refptr<net::IOBufferWithSize> SerializeAndFrameMessage( 24 scoped_refptr<net::IOBufferWithSize> SerializeAndFrameMessage(
25 const google::protobuf::MessageLite& msg) { 25 const google::protobuf::MessageLite& msg) {
26 // Create a buffer with 4 extra bytes. This is used as prefix to write an 26 // Create a buffer with 4 extra bytes. This is used as prefix to write an
27 // int32 of the serialized message size for framing. 27 // int32 of the serialized message size for framing.
28 const int kExtraBytes = sizeof(int32); 28 const int kExtraBytes = sizeof(int32);
29 int size = msg.ByteSize() + kExtraBytes; 29 int size = msg.ByteSize() + kExtraBytes;
30 scoped_refptr<net::IOBufferWithSize> buffer(new net::IOBufferWithSize(size)); 30 scoped_refptr<net::IOBufferWithSize> buffer(new net::IOBufferWithSize(size));
31 talk_base::SetBE32(buffer->data(), msg.GetCachedSize()); 31 talk_base::SetBE32(buffer->data(), msg.GetCachedSize());
32 msg.SerializeWithCachedSizesToArray( 32 msg.SerializeWithCachedSizesToArray(
33 reinterpret_cast<uint8*>(buffer->data()) + kExtraBytes); 33 reinterpret_cast<uint8*>(buffer->data()) + kExtraBytes);
34 return buffer; 34 return buffer;
35 } 35 }
36 36
37 } // namespace protocol 37 } // namespace protocol
38 } // namespace remoting 38 } // namespace remoting
OLDNEW
« no previous file with comments | « remoting/protocol/rtp_utils.cc ('k') | third_party/libjingle/README.chromium » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698