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

Side by Side Diff: net/curvecp/messenger.h

Issue 9114020: Remove task.h and finish base::Bind() migration. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix typo Created 8 years, 11 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 | Annotate | Revision Log
« no previous file with comments | « net/curvecp/client_packetizer.h ('k') | net/curvecp/server_messenger.h » ('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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 #ifndef NET_CURVECP_MESSENGER_H_ 5 #ifndef NET_CURVECP_MESSENGER_H_
6 #define NET_CURVECP_MESSENGER_H_ 6 #define NET_CURVECP_MESSENGER_H_
7 #pragma once 7 #pragma once
8 8
9 #include <deque> 9 #include <deque>
10 #include <list> 10 #include <list>
11 11
12 #include "base/basictypes.h" 12 #include "base/basictypes.h"
13 #include "base/task.h"
14 #include "base/threading/non_thread_safe.h" 13 #include "base/threading/non_thread_safe.h"
15 #include "base/timer.h" 14 #include "base/timer.h"
16 #include "net/base/completion_callback.h" 15 #include "net/base/completion_callback.h"
17 #include "net/curvecp/circular_buffer.h" 16 #include "net/curvecp/circular_buffer.h"
18 #include "net/curvecp/packetizer.h" 17 #include "net/curvecp/packetizer.h"
19 #include "net/curvecp/received_block_list.h" 18 #include "net/curvecp/received_block_list.h"
20 #include "net/curvecp/rtt_and_send_rate_calculator.h" 19 #include "net/curvecp/rtt_and_send_rate_calculator.h"
21 #include "net/curvecp/sent_block_list.h" 20 #include "net/curvecp/sent_block_list.h"
22 #include "net/socket/socket.h" 21 #include "net/socket/socket.h"
23 22
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
91 base::OneShotTimer<Messenger> send_timeout_timer_; 90 base::OneShotTimer<Messenger> send_timeout_timer_;
92 // A timer to fire when we can send data. 91 // A timer to fire when we can send data.
93 base::OneShotTimer<Messenger> send_timer_; 92 base::OneShotTimer<Messenger> send_timer_;
94 93
95 DISALLOW_COPY_AND_ASSIGN(Messenger); 94 DISALLOW_COPY_AND_ASSIGN(Messenger);
96 }; 95 };
97 96
98 } // namespace net 97 } // namespace net
99 98
100 #endif // NET_CURVECP_MESSENGER_H_ 99 #endif // NET_CURVECP_MESSENGER_H_
OLDNEW
« no previous file with comments | « net/curvecp/client_packetizer.h ('k') | net/curvecp/server_messenger.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698