blob: d9ebbc4fa38ffc42250bc44e8883c2f229c46407 [file] [log] [blame]
// Copyright 2017 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 CONTENT_SHELL_GPU_SHELL_CONTENT_GPU_CLIENT_H_
#define CONTENT_SHELL_GPU_SHELL_CONTENT_GPU_CLIENT_H_
#include <memory>
#include "base/macros.h"
#include "content/public/common/network_service_test.mojom.h"
#include "content/public/gpu/content_gpu_client.h"
namespace content {
class ShellContentGpuClient : public ContentGpuClient {
public:
ShellContentGpuClient();
~ShellContentGpuClient() override;
// ContentGpuClient:
void Initialize(base::FieldTrialList::Observer* observer,
service_manager::BinderRegistry* registry) override;
DISALLOW_COPY_AND_ASSIGN(ShellContentGpuClient);
};
} // namespace content
#endif // CONTENT_SHELL_GPU_SHELL_CONTENT_GPU_CLIENT_H_