chromium/gpu/ipc/common/memory_stats.h

// Copyright 2012 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef GPU_IPC_COMMON_MEMORY_STATS_H_
#define GPU_IPC_COMMON_MEMORY_STATS_H_

// Provides access to the GPU information for the system
// on which chrome is currently running.

#include <stddef.h>

#include <map>

#include "base/process/process.h"
#include "gpu/gpu_export.h"

namespace gpu {

// Note: we use uint64_t instead of size_t for byte count because this struct
// is sent over IPC which could span 32 & 64 bit processes.
struct GPU_EXPORT VideoMemoryUsageStats {};

}  // namespace gpu

#endif  // GPU_IPC_COMMON_MEMORY_STATS_H_