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_SOCKET_SOCKET_PERFORMANCE_WATCHER_FACTORY_H_ |
6 #define NET_BASE_SOCKET_PERFORMANCE_WATCHER_FACTORY_H_ | 6 #define NET_SOCKET_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 | 11 |
12 namespace net { | 12 namespace net { |
13 | 13 |
14 class SocketPerformanceWatcher; | 14 class SocketPerformanceWatcher; |
15 | 15 |
16 // SocketPerformanceWatcherFactory creates socket performance watcher for | 16 // SocketPerformanceWatcherFactory creates socket performance watcher for |
(...skipping 15 matching lines...) Expand all Loading... |
32 | 32 |
33 protected: | 33 protected: |
34 SocketPerformanceWatcherFactory() {} | 34 SocketPerformanceWatcherFactory() {} |
35 | 35 |
36 private: | 36 private: |
37 DISALLOW_COPY_AND_ASSIGN(SocketPerformanceWatcherFactory); | 37 DISALLOW_COPY_AND_ASSIGN(SocketPerformanceWatcherFactory); |
38 }; | 38 }; |
39 | 39 |
40 } // namespace net | 40 } // namespace net |
41 | 41 |
42 #endif // NET_BASE_SOCKET_PERFORMANCE_WATCHER_FACTORY_H_ | 42 #endif // NET_SOCKET_SOCKET_PERFORMANCE_WATCHER_FACTORY_H_ |
OLD | NEW |