// 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 UI_GL_GL_SHARE_GROUP_H_ #define UI_GL_GL_SHARE_GROUP_H_ #include <set> #include "base/memory/raw_ptr.h" #include "base/memory/ref_counted.h" #include "build/build_config.h" #include "ui/gl/gl_export.h" namespace gl { class GLContext; // A group of GL contexts that share an ID namespace. class GL_EXPORT GLShareGroup : public base::RefCounted<GLShareGroup> { … }; } // namespace gl #endif // UI_GL_GL_SHARE_GROUP_H_