#ifndef CONTENT_BROWSER_GPU_BROWSER_GPU_CLIENT_DELEGATE_H_
#define CONTENT_BROWSER_GPU_BROWSER_GPU_CLIENT_DELEGATE_H_
#include "components/viz/host/gpu_client_delegate.h"
namespace content {
class BrowserGpuClientDelegate : public viz::GpuClientDelegate {
public:
BrowserGpuClientDelegate();
BrowserGpuClientDelegate(const BrowserGpuClientDelegate&) = delete;
BrowserGpuClientDelegate& operator=(const BrowserGpuClientDelegate&) = delete;
~BrowserGpuClientDelegate() override;
viz::GpuHostImpl* EnsureGpuHost() override;
};
}
#endif