#ifndef CHROME_BROWSER_VR_GRAPHICS_DELEGATE_WIN_H_
#define CHROME_BROWSER_VR_GRAPHICS_DELEGATE_WIN_H_
#include "base/memory/raw_ptr.h"
#include "base/memory/scoped_refptr.h"
#include "chrome/browser/vr/graphics_delegate.h"
#include "gpu/GLES2/gl2extchromium.h"
#include "gpu/command_buffer/client/client_shared_image.h"
#include "gpu/command_buffer/client/gles2_interface.h"
#include "gpu/ipc/client/gpu_channel_host.h"
#include "mojo/public/cpp/platform/platform_handle.h"
#include "services/viz/public/cpp/gpu/context_provider_command_buffer.h"
#include "ui/gfx/geometry/size.h"
namespace gpu {
class SharedImageInterface;
namespace gles2 {
class GLES2Interface;
}
}
namespace vr {
class GraphicsDelegateWin : public GraphicsDelegate { … };
}
#endif