OLD | NEW |
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/jingle_glue/ssl_socket_adapter.h" | 5 #include "remoting/jingle_glue/ssl_socket_adapter.h" |
6 | 6 |
7 #include "base/base64.h" | 7 #include "base/base64.h" |
8 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
9 #include "base/message_loop.h" | 9 #include "base/message_loop.h" |
10 #include "jingle/glue/utils.h" | 10 #include "jingle/glue/utils.h" |
(...skipping 447 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
458 write_buffer_len_ = buffer_len; | 458 write_buffer_len_ = buffer_len; |
459 return; | 459 return; |
460 } | 460 } |
461 } | 461 } |
462 was_used_to_convey_data_ = true; | 462 was_used_to_convey_data_ = true; |
463 callback.Run(result); | 463 callback.Run(result); |
464 } | 464 } |
465 } | 465 } |
466 | 466 |
467 } // namespace remoting | 467 } // namespace remoting |
OLD | NEW |