Make BackendManager function private
This is only called from BackendManager and doesn't need to be part of the public interface. Change-Id: I0ffd375bea40ccf660d779464110c8cab25d0d02
This commit is contained in:
parent
786939db2b
commit
043be2b9e3
1 changed files with 2 additions and 1 deletions
|
|
@ -42,9 +42,10 @@ class BackendManager {
|
|||
BackendConstructorT backend_constructor);
|
||||
std::unique_ptr<Backend> CreateBackendForConnector(
|
||||
const DrmConnector *connector);
|
||||
std::unique_ptr<Backend> GetBackendByName(std::string &name);
|
||||
|
||||
private:
|
||||
std::unique_ptr<Backend> GetBackendByName(std::string &name);
|
||||
|
||||
BackendManager() = default;
|
||||
|
||||
static const std::vector<std::string> kClientDevices;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue