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

Side by Side Diff: net/quic/quartc/quartc_factory.h

Issue 2921113002: Adds missing include. (Closed)
Patch Set: Adds header where used. Created 3 years, 6 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 | « no previous file | net/quic/quartc/quartc_factory_interface.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) 2017 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2017 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_QUIC_QUARTC_QUARTC_FACTORY_H_ 5 #ifndef NET_QUIC_QUARTC_QUARTC_FACTORY_H_
6 #define NET_QUIC_QUARTC_QUARTC_FACTORY_H_ 6 #define NET_QUIC_QUARTC_QUARTC_FACTORY_H_
7 7
8 #include "net/quic/core/quic_alarm_factory.h" 8 #include "net/quic/core/quic_alarm_factory.h"
9 #include "net/quic/core/quic_connection.h" 9 #include "net/quic/core/quic_connection.h"
10 #include "net/quic/core/quic_simple_buffer_allocator.h" 10 #include "net/quic/core/quic_simple_buffer_allocator.h"
11 #include "net/quic/platform/api/quic_export.h"
11 #include "net/quic/quartc/quartc_factory_interface.h" 12 #include "net/quic/quartc/quartc_factory_interface.h"
12 #include "net/quic/quartc/quartc_packet_writer.h" 13 #include "net/quic/quartc/quartc_packet_writer.h"
13 #include "net/quic/quartc/quartc_task_runner_interface.h" 14 #include "net/quic/quartc/quartc_task_runner_interface.h"
14 15
15 namespace net { 16 namespace net {
16 17
17 // Implements the QuartcFactoryInterface to create the instances of 18 // Implements the QuartcFactoryInterface to create the instances of
18 // QuartcSessionInterface. Implements the QuicAlarmFactory to create alarms 19 // QuartcSessionInterface. Implements the QuicAlarmFactory to create alarms
19 // using the QuartcTaskRunner. Implements the QuicConnectionHelperInterface used 20 // using the QuartcTaskRunner. Implements the QuicConnectionHelperInterface used
20 // by the QuicConnections. Only one QuartcFactory is expected to be created. 21 // by the QuicConnections. Only one QuartcFactory is expected to be created.
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 // Used to implement the QuicConnectionHelperInterface. 54 // Used to implement the QuicConnectionHelperInterface.
54 // The QuicClock wrapper held in this variable is owned by QuartcFactory, 55 // The QuicClock wrapper held in this variable is owned by QuartcFactory,
55 // but the QuartcClockInterface inside of it belongs to the user! 56 // but the QuartcClockInterface inside of it belongs to the user!
56 std::unique_ptr<QuicClock> clock_; 57 std::unique_ptr<QuicClock> clock_;
57 SimpleBufferAllocator buffer_allocator_; 58 SimpleBufferAllocator buffer_allocator_;
58 }; 59 };
59 60
60 } // namespace net 61 } // namespace net
61 62
62 #endif // NET_QUIC_QUARTC_QUARTC_FACTORY_H_ 63 #endif // NET_QUIC_QUARTC_QUARTC_FACTORY_H_
OLDNEW
« no previous file with comments | « no previous file | net/quic/quartc/quartc_factory_interface.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698