OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 EXTENSIONS_BROWSER_API_SOCKETS_UDP_SOCKETS_UDP_API_H_ | 5 #ifndef EXTENSIONS_BROWSER_API_SOCKETS_UDP_SOCKETS_UDP_API_H_ |
6 #define EXTENSIONS_BROWSER_API_SOCKETS_UDP_SOCKETS_UDP_API_H_ | 6 #define EXTENSIONS_BROWSER_API_SOCKETS_UDP_SOCKETS_UDP_API_H_ |
7 | 7 |
| 8 #include <stddef.h> |
| 9 |
8 #include "base/gtest_prod_util.h" | 10 #include "base/gtest_prod_util.h" |
9 #include "extensions/browser/api/socket/socket_api.h" | 11 #include "extensions/browser/api/socket/socket_api.h" |
10 #include "extensions/common/api/sockets_udp.h" | 12 #include "extensions/common/api/sockets_udp.h" |
11 | 13 |
12 namespace extensions { | 14 namespace extensions { |
13 class ResumableUDPSocket; | 15 class ResumableUDPSocket; |
14 } | 16 } |
15 | 17 |
16 namespace extensions { | 18 namespace extensions { |
17 namespace api { | 19 namespace api { |
(...skipping 271 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
289 void Work() override; | 291 void Work() override; |
290 | 292 |
291 private: | 293 private: |
292 scoped_ptr<sockets_udp::SetBroadcast::Params> params_; | 294 scoped_ptr<sockets_udp::SetBroadcast::Params> params_; |
293 }; | 295 }; |
294 | 296 |
295 } // namespace api | 297 } // namespace api |
296 } // namespace extensions | 298 } // namespace extensions |
297 | 299 |
298 #endif // EXTENSIONS_BROWSER_API_SOCKETS_UDP_SOCKETS_UDP_API_H_ | 300 #endif // EXTENSIONS_BROWSER_API_SOCKETS_UDP_SOCKETS_UDP_API_H_ |
OLD | NEW |