#ifndef CONTENT_SHELL_GPU_SHELL_CONTENT_GPU_CLIENT_H_
#define CONTENT_SHELL_GPU_SHELL_CONTENT_GPU_CLIENT_H_
#include "content/public/gpu/content_gpu_client.h"
namespace content {
class ShellContentGpuClient : public ContentGpuClient {
public:
ShellContentGpuClient();
ShellContentGpuClient(const ShellContentGpuClient&) = delete;
ShellContentGpuClient& operator=(const ShellContentGpuClient&) = delete;
~ShellContentGpuClient() override;
void ExposeInterfacesToBrowser(
viz::GpuServiceImpl* gpu_service,
const gpu::GpuPreferences& gpu_preferences,
const gpu::GpuDriverBugWorkarounds& gpu_workarounds,
mojo::BinderMap* binders) override;
};
}
#endif