blob: d7d4d21be357bdfb458868a6d52318cfcd9e4e4f [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 DEVICE_VR_WINDOWS_MIXED_REALITY_MIXED_REALITY_STATICS_H_
#define DEVICE_VR_WINDOWS_MIXED_REALITY_MIXED_REALITY_STATICS_H_
#include <memory>
#include "device/vr/vr_export.h"
namespace device {
class DEVICE_VR_EXPORT MixedRealityDeviceStatics {
public:
static std::unique_ptr<MixedRealityDeviceStatics> CreateInstance();
virtual ~MixedRealityDeviceStatics();
// TODO(billorr): Consider notifications instead of polling.
virtual bool IsHardwareAvailable() = 0;
virtual bool IsApiAvailable() = 0;
};
} // namespace device
#endif // DEVICE_VR_WINDOWS_MIXED_REALITY_MIXED_REALITY_STATICS_H_