// Copyright 2017 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CONTENT_PUBLIC_BROWSER_GPU_FEATURE_CHECKER_H_ #define CONTENT_PUBLIC_BROWSER_GPU_FEATURE_CHECKER_H_ #include "base/functional/callback_forward.h" #include "base/memory/ref_counted.h" #include "content/common/content_export.h" #include "gpu/config/gpu_feature_type.h" namespace content { // GpuFeatureChecker does an asynchronous lookup for a GpuFeatureType. It will // keep itself alive (via being a refcounted object) until it calls the given // |callback|. The feature check is not initiated (and a self-reference is not // taken) until CheckGpuFeatureAvailability() is called. If the feature is // already available, the |callback| may be called synchronously inside of the // CheckGpuFeatureAvailability() call. class GpuFeatureChecker : public base::RefCountedThreadSafe<GpuFeatureChecker> { … }; } // namespace content #endif // CONTENT_PUBLIC_BROWSER_GPU_FEATURE_CHECKER_H_