blob: 70bb35c3f3b8eeae7ecde4e3508fcec9396dfb46 [file] [log] [blame]
// Copyright 2019 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 CHROME_CREDENTIAL_PROVIDER_GAIACP_CHROME_AVAILABILITY_CHECKER_H_
#define CHROME_CREDENTIAL_PROVIDER_GAIACP_CHROME_AVAILABILITY_CHECKER_H_
namespace credential_provider {
// Checks the availability of Chrome. In unit test this class
// can be overridden to return a forced value if desired.
class ChromeAvailabilityChecker {
public:
static ChromeAvailabilityChecker* Get();
virtual bool HasSupportedChromeVersion();
protected:
ChromeAvailabilityChecker();
virtual ~ChromeAvailabilityChecker();
// Returns the storage used for the instance pointer.
static ChromeAvailabilityChecker** GetInstanceStorage();
};
} // namespace credential_provider
#endif // CHROME_CREDENTIAL_PROVIDER_GAIACP_CHROME_AVAILABILITY_CHECKER_H_