blob: 5107f23be1460cd03f3ce43ce633069a88d60ea7 [file] [log] [blame]
// Copyright (c) 2014 The Chromium OS 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 CRYPTOHOME_CHAPS_CLIENT_FACTORY_H_
#define CRYPTOHOME_CHAPS_CLIENT_FACTORY_H_
namespace chaps {
class TokenManagerClient;
}
namespace cryptohome {
class ChapsClientFactory {
public:
ChapsClientFactory();
ChapsClientFactory(const ChapsClientFactory&) = delete;
ChapsClientFactory& operator=(const ChapsClientFactory&) = delete;
virtual ~ChapsClientFactory();
virtual chaps::TokenManagerClient* New();
};
} // namespace cryptohome
#endif // CRYPTOHOME_CHAPS_CLIENT_FACTORY_H_