| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_UDP_UDP_SOCKET_WIN_H_ | 5 #ifndef NET_UDP_UDP_SOCKET_WIN_H_ |
| 6 #define NET_UDP_UDP_SOCKET_WIN_H_ | 6 #define NET_UDP_UDP_SOCKET_WIN_H_ |
| 7 | 7 |
| 8 #include <qos2.h> | 8 #include <qos2.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 #include <winsock2.h> | 10 #include <winsock2.h> |
| 11 | 11 |
| 12 #include "base/gtest_prod_util.h" | 12 #include "base/gtest_prod_util.h" |
| 13 #include "base/macros.h" |
| 13 #include "base/memory/ref_counted.h" | 14 #include "base/memory/ref_counted.h" |
| 14 #include "base/memory/scoped_ptr.h" | 15 #include "base/memory/scoped_ptr.h" |
| 15 #include "base/threading/non_thread_safe.h" | 16 #include "base/threading/non_thread_safe.h" |
| 16 #include "base/win/object_watcher.h" | 17 #include "base/win/object_watcher.h" |
| 17 #include "base/win/scoped_handle.h" | 18 #include "base/win/scoped_handle.h" |
| 18 #include "net/base/address_family.h" | 19 #include "net/base/address_family.h" |
| 19 #include "net/base/completion_callback.h" | 20 #include "net/base/completion_callback.h" |
| 20 #include "net/base/io_buffer.h" | 21 #include "net/base/io_buffer.h" |
| 21 #include "net/base/ip_endpoint.h" | 22 #include "net/base/ip_endpoint.h" |
| 22 #include "net/base/net_export.h" | 23 #include "net/base/net_export.h" |
| (...skipping 349 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 372 SetFlowFn set_flow_func_; | 373 SetFlowFn set_flow_func_; |
| 373 | 374 |
| 374 FRIEND_TEST_ALL_PREFIXES(UDPSocketTest, SetDSCPFake); | 375 FRIEND_TEST_ALL_PREFIXES(UDPSocketTest, SetDSCPFake); |
| 375 DISALLOW_COPY_AND_ASSIGN(QwaveAPI); | 376 DISALLOW_COPY_AND_ASSIGN(QwaveAPI); |
| 376 }; | 377 }; |
| 377 | 378 |
| 378 | 379 |
| 379 } // namespace net | 380 } // namespace net |
| 380 | 381 |
| 381 #endif // NET_UDP_UDP_SOCKET_WIN_H_ | 382 #endif // NET_UDP_UDP_SOCKET_WIN_H_ |
| OLD | NEW |