blob: 3df4de207cc6e87f83e8e88a35b5f59cf2e6aaf4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
// 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 CONTENT_COMMON_GPU_CONTENT_GPU_CLIENT_H_
#define CONTENT_COMMON_GPU_CONTENT_GPU_CLIENT_H_
#pragma once
#include "content/common/content_client.h"
struct GPUInfo;
namespace content {
// Embedder API for participating in plugin logic.
class ContentGpuClient {
public:
// Sets the data on the gpu to send along with crash reports.
virtual void SetGpuInfo(const GPUInfo& gpu_info) {}
};
} // namespace content
#endif // CONTENT_COMMON_GPU_CONTENT_GPU_CLIENT_H_
|