blob: c9d1fb9bda86005a564a8a4dd57a2839af944da7 [file] [log] [blame]
// Copyright 2023 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef GPU_IPC_CLIENT_GPU_CHANNEL_OBSERVER_H_
#define GPU_IPC_CLIENT_GPU_CHANNEL_OBSERVER_H_
namespace gpu {
class GPU_EXPORT GpuChannelLostObserver {
public:
GpuChannelLostObserver() = default;
~GpuChannelLostObserver() = default;
virtual void OnGpuChannelLost() = 0;
};
} // namespace gpu
#endif // GPU_IPC_CLIENT_GPU_CHANNEL_OBSERVER_H_