OLD | NEW |
---|---|
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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_BASE_SOCKET_PERFORMANCE_WATCHER_FACTORY_H_ | 5 #ifndef NET_BASE_SOCKET_PERFORMANCE_WATCHER_FACTORY_H_ |
6 #define NET_BASE_SOCKET_PERFORMANCE_WATCHER_FACTORY_H_ | 6 #define NET_BASE_SOCKET_PERFORMANCE_WATCHER_FACTORY_H_ |
7 | 7 |
8 #include "base/macros.h" | 8 #include "base/macros.h" |
9 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
10 #include "net/base/net_export.h" | 10 #include "net/base/net_export.h" |
11 #include "net/base/socket_performance_watcher.h" | |
Ryan Sleevi
2015/10/20 00:10:36
Unnecessary / forward declare.
tbansal1
2016/02/05 19:44:15
Done.
| |
11 | 12 |
12 namespace net { | 13 namespace net { |
13 | 14 |
14 class SocketRecorder; | 15 class SocketRecorder; |
15 | 16 |
16 // SocketPerformanceWatcherFactory creates socket performance watcher for | 17 // SocketPerformanceWatcherFactory creates socket performance watcher for |
17 // different type of sockets. | 18 // different type of sockets. |
18 class NET_EXPORT_PRIVATE SocketPerformanceWatcherFactory { | 19 class NET_EXPORT_PRIVATE SocketPerformanceWatcherFactory { |
19 public: | 20 public: |
20 virtual ~SocketPerformanceWatcherFactory() {} | 21 virtual ~SocketPerformanceWatcherFactory() {} |
(...skipping 15 matching lines...) Expand all Loading... | |
36 protected: | 37 protected: |
37 SocketPerformanceWatcherFactory() {} | 38 SocketPerformanceWatcherFactory() {} |
38 | 39 |
39 private: | 40 private: |
40 DISALLOW_COPY_AND_ASSIGN(SocketPerformanceWatcherFactory); | 41 DISALLOW_COPY_AND_ASSIGN(SocketPerformanceWatcherFactory); |
41 }; | 42 }; |
42 | 43 |
43 } // namespace net | 44 } // namespace net |
44 | 45 |
45 #endif // NET_BASE_SOCKET_PERFORMANCE_WATCHER_FACTORY_H_ | 46 #endif // NET_BASE_SOCKET_PERFORMANCE_WATCHER_FACTORY_H_ |
OLD | NEW |