#ifndef ASH_GPU_SUPPORT_H_
#define ASH_GPU_SUPPORT_H_
#include <list>
#include "ash/ash_export.h"
#include "base/callback_forward.h"
#include "base/process/process.h"
namespace ash {
class ASH_EXPORT GPUSupport {
public:
typedef base::Callback<void(const std::list<base::ProcessHandle>&)>
GetGpuProcessHandlesCallback;
virtual ~GPUSupport() {}
virtual bool IsPanelFittingDisabled() const = 0;
virtual void DisableGpuWatchdog() = 0;
virtual void GetGpuProcessHandles(
const GetGpuProcessHandlesCallback& callback) const = 0;
};
}
#endif