| 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 TOOLS_ANDROID_FORWARDER2_FORWARDER_H_ | 5 #ifndef TOOLS_ANDROID_FORWARDER2_FORWARDER_H_ |
| 6 #define TOOLS_ANDROID_FORWARDER2_FORWARDER_H_ | 6 #define TOOLS_ANDROID_FORWARDER2_FORWARDER_H_ |
| 7 | 7 |
| 8 #include "base/memory/scoped_ptr.h" | 8 #include "base/memory/scoped_ptr.h" |
| 9 #include "base/threading/thread.h" | |
| 10 | 9 |
| 11 namespace forwarder2 { | 10 namespace forwarder2 { |
| 12 | 11 |
| 13 class Socket; | 12 class Socket; |
| 14 | 13 |
| 15 void StartForwarder(scoped_ptr<Socket> socket1, scoped_ptr<Socket> socket2); | 14 void StartForwarder(scoped_ptr<Socket> socket1, scoped_ptr<Socket> socket2); |
| 16 | 15 |
| 17 } // namespace forwarder2 | 16 } // namespace forwarder2 |
| 18 | 17 |
| 19 #endif // TOOLS_ANDROID_FORWARDER2_FORWARDER_H_ | 18 #endif // TOOLS_ANDROID_FORWARDER2_FORWARDER_H_ |
| OLD | NEW |