blob: 5b6d61b39b93fd2202db4417aa1273f48507e6f7 [file] [log] [blame]
// Copyright 2019 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROMECAST_GPU_CAST_CONTENT_GPU_CLIENT_H_
#define CHROMECAST_GPU_CAST_CONTENT_GPU_CLIENT_H_
#include <memory>
#include "content/public/gpu/content_gpu_client.h"
namespace chromecast {
namespace shell {
class CastContentGpuClient : public content::ContentGpuClient {
public:
static std::unique_ptr<CastContentGpuClient> Create();
CastContentGpuClient(const CastContentGpuClient&) = delete;
CastContentGpuClient& operator=(const CastContentGpuClient&) = delete;
~CastContentGpuClient() override;
// content::ContentGpuClient:
void PostCompositorThreadCreated(
base::SingleThreadTaskRunner* task_runner) override;
protected:
CastContentGpuClient();
};
} // namespace shell
} // namespace chromecast
#endif // CHROMECAST_GPU_CAST_CONTENT_GPU_CLIENT_H_