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

Side by Side Diff: net/tools/quic/quic_epoll_alarm_factory.h

Issue 1908103002: Landing Recent QUIC changes until 4/15/2016 17:20 UTC (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix Created 4 years, 8 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 | « net/tools/quic/quic_dispatcher_test.cc ('k') | net/tools/quic/quic_epoll_alarm_factory.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef NET_QUIC_QUIC_EPOLL_ALARM_FACTORY_H_
6 #define NET_QUIC_QUIC_EPOLL_ALARM_FACTORY_H_
7
8 #include "net/quic/quic_alarm.h"
9 #include "net/quic/quic_alarm_factory.h"
10
11 namespace net {
12
13 class EpollServer;
14
15 // Creates alarms that use the supplied EpollServer for timing and firing.
16 class QuicEpollAlarmFactory : public QuicAlarmFactory {
17 public:
18 explicit QuicEpollAlarmFactory(EpollServer* epoll_server);
19 ~QuicEpollAlarmFactory() override;
20
21 // QuicAlarmFactory interface.
22 QuicAlarm* CreateAlarm(QuicAlarm::Delegate* delegate) override;
23 QuicArenaScopedPtr<QuicAlarm> CreateAlarm(
24 QuicArenaScopedPtr<QuicAlarm::Delegate> delegate,
25 QuicConnectionArena* arena) override;
26
27 private:
28 EpollServer* epoll_server_; // Not owned.
29
30 DISALLOW_COPY_AND_ASSIGN(QuicEpollAlarmFactory);
31 };
32
33 } // namespace net
34
35 #endif // NET_QUIC_QUIC_EPOLL_ALARM_FACTORY_H_
OLDNEW
« no previous file with comments | « net/tools/quic/quic_dispatcher_test.cc ('k') | net/tools/quic/quic_epoll_alarm_factory.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698