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 CONTENT_RENDERER_P2P_FILTERING_NETWORK_MANAGER_H_ | 5 #ifndef CONTENT_RENDERER_P2P_FILTERING_NETWORK_MANAGER_H_ |
6 #define CONTENT_RENDERER_P2P_FILTERING_NETWORK_MANAGER_H_ | 6 #define CONTENT_RENDERER_P2P_FILTERING_NETWORK_MANAGER_H_ |
7 | 7 |
| 8 #include "base/macros.h" |
8 #include "base/memory/weak_ptr.h" | 9 #include "base/memory/weak_ptr.h" |
9 #include "base/threading/thread_checker.h" | 10 #include "base/threading/thread_checker.h" |
10 #include "base/time/time.h" | 11 #include "base/time/time.h" |
11 #include "content/common/content_export.h" | 12 #include "content/common/content_export.h" |
12 #include "content/renderer/p2p/network_manager_uma.h" | 13 #include "content/renderer/p2p/network_manager_uma.h" |
13 #include "third_party/webrtc/base/network.h" | 14 #include "third_party/webrtc/base/network.h" |
14 #include "third_party/webrtc/base/sigslot.h" | 15 #include "third_party/webrtc/base/sigslot.h" |
15 #include "url/gurl.h" | 16 #include "url/gurl.h" |
16 | 17 |
17 namespace media { | 18 namespace media { |
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
120 GURL requesting_origin_; | 121 GURL requesting_origin_; |
121 | 122 |
122 base::WeakPtrFactory<FilteringNetworkManager> weak_ptr_factory_; | 123 base::WeakPtrFactory<FilteringNetworkManager> weak_ptr_factory_; |
123 | 124 |
124 DISALLOW_COPY_AND_ASSIGN(FilteringNetworkManager); | 125 DISALLOW_COPY_AND_ASSIGN(FilteringNetworkManager); |
125 }; | 126 }; |
126 | 127 |
127 } // namespace content | 128 } // namespace content |
128 | 129 |
129 #endif // CONTENT_RENDERER_P2P_FILTERING_NETWORK_MANAGER_H_ | 130 #endif // CONTENT_RENDERER_P2P_FILTERING_NETWORK_MANAGER_H_ |
OLD | NEW |