| Index: remoting/host/plugin/policy_hack/nat_policy_win.h
|
| diff --git a/remoting/host/plugin/policy_hack/nat_policy_win.h b/remoting/host/plugin/policy_hack/nat_policy_win.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..48f3429be82aa4f410a6a202cf5cefb18dec94f4
|
| --- /dev/null
|
| +++ b/remoting/host/plugin/policy_hack/nat_policy_win.h
|
| @@ -0,0 +1,38 @@
|
| +// Copyright (c) 2011 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +#ifndef REMOTING_HOST_PLUGIN_POLICY_HACK_NAT_POLICY_WIN_H_
|
| +#define REMOTING_HOST_PLUGIN_POLICY_HACK_NAT_POLICY_WIN_H_
|
| +
|
| +#include "remoting/host/plugin/policy_hack/nat_policy.h"
|
| +
|
| +namespace base {
|
| +
|
| +class MessageLoopProxy;
|
| +
|
| +namespace files {
|
| +class FilePathWatcher;
|
| +} // namespace base
|
| +
|
| +} // namespace files
|
| +
|
| +namespace remoting {
|
| +namespace policy_hack {
|
| +
|
| +class NatPolicyWin : public NatPolicy {
|
| + public:
|
| + NatPolicyWin(const NatPolicy::NatEnabledCallback& nat_enabled_cb);
|
| + ~NatPolicyWin();
|
| +
|
| + virtual void StartWatching() OVERRIDE;
|
| + virtual void StopWatching(base::WaitableEvent* done) OVERRIDE;
|
| +
|
| + private:
|
| + NatEnabledCallback nat_enabled_cb_;
|
| +};
|
| +
|
| +} // namespace policy_hack
|
| +} // namespace remoting
|
| +
|
| +#endif // REMOTING_HOST_PLUGIN_POLICY_HACK_NAT_POLICY_WIN_H_
|
|
|