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