forwarder.h revision d3868032626d59662ff73b372b5d584c1d144c53
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
11namespace forwarder2 {
12
13class Socket;
14
15void StartForwarder(scoped_ptr<Socket> socket1, scoped_ptr<Socket> socket2);
16
17}  // namespace forwarder2
18
19#endif  // TOOLS_ANDROID_FORWARDER2_FORWARDER_H_
20