blob: 95a4907b751f0b59061f189b9b97578f1b35dd5a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
// Copyright 2013 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_PAIRING_REGISTRY_DELEGATE_H_
#define REMOTING_HOST_PAIRING_REGISTRY_DELEGATE_H_
#include "base/memory/scoped_ptr.h"
#include "remoting/protocol/pairing_registry.h"
namespace base {
class TaskRunner;
} // namespace base
namespace remoting {
// Returns a platform-specific pairing registry delegate that will save to
// permanent storage using the specified TaskRunner. Returns NULL on platforms
// that don't support pairing.
scoped_ptr<protocol::PairingRegistry::Delegate>
CreatePairingRegistryDelegate(scoped_refptr<base::TaskRunner> task_runner);
} // namespace remoting
#endif // REMOTING_HOST_PAIRING_REGISTRY_DELEGATE_H_
|