OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 CHROMEOS_NETWORK_NETWORK_DEVICE_HANDLER_H_ | 5 #ifndef CHROMEOS_NETWORK_NETWORK_DEVICE_HANDLER_H_ |
6 #define CHROMEOS_NETWORK_NETWORK_DEVICE_HANDLER_H_ | 6 #define CHROMEOS_NETWORK_NETWORK_DEVICE_HANDLER_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/callback.h" | 10 #include "base/callback.h" |
| 11 #include "base/macros.h" |
11 #include "chromeos/chromeos_export.h" | 12 #include "chromeos/chromeos_export.h" |
12 #include "chromeos/network/network_handler_callbacks.h" | 13 #include "chromeos/network/network_handler_callbacks.h" |
13 | 14 |
14 namespace base { | 15 namespace base { |
15 class Value; | 16 class Value; |
16 } | 17 } |
17 | 18 |
18 namespace net { | 19 namespace net { |
19 class IPEndPoint; | 20 class IPEndPoint; |
20 } | 21 } |
(...skipping 212 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
233 const base::Closure& callback, | 234 const base::Closure& callback, |
234 const network_handler::ErrorCallback& error_callback) = 0; | 235 const network_handler::ErrorCallback& error_callback) = 0; |
235 | 236 |
236 private: | 237 private: |
237 DISALLOW_COPY_AND_ASSIGN(NetworkDeviceHandler); | 238 DISALLOW_COPY_AND_ASSIGN(NetworkDeviceHandler); |
238 }; | 239 }; |
239 | 240 |
240 } // namespace chromeos | 241 } // namespace chromeos |
241 | 242 |
242 #endif // CHROMEOS_NETWORK_NETWORK_DEVICE_HANDLER_H_ | 243 #endif // CHROMEOS_NETWORK_NETWORK_DEVICE_HANDLER_H_ |
OLD | NEW |