blob: 53b3cdf9e36c0a4a36178a5a27165948e354733d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
// Copyright (c) 2011 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 CHROME_COMMON_CHROME_CONTENT_GPU_CLIENT_H_
#define CHROME_COMMON_CHROME_CONTENT_GPU_CLIENT_H_
#pragma once
#include "content/common/gpu/content_gpu_client.h"
namespace chrome {
class ChromeContentGpuClient : public content::ContentGpuClient {
public:
virtual void SetGpuInfo(const GPUInfo& gpu_info);
};
} // namespace chrome
#endif // CHROME_COMMON_CHROME_CONTENT_GPU_CLIENT_H_
|