blob: c7ddb133bd9d95929d90ebe80d972be25a60da8e [file] [log] [blame]
// Copyright (c) 2012 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_BROWSER_GPU_GL_STRING_MANAGER_H_
#define CHROME_BROWSER_GPU_GL_STRING_MANAGER_H_
#include <string>
#include "base/compiler_specific.h"
#include "base/macros.h"
#include "chrome/browser/gpu/gpu_profile_cache.h"
#include "content/public/browser/gpu_data_manager_observer.h"
class GLStringManager : public GpuProfileCache,
public content::GpuDataManagerObserver {
public:
GLStringManager();
~GLStringManager() override;
// GpuProfileCache.
void Initialize() override;
// content::GpuDataManagerObserver
void OnGpuInfoUpdate() override;
private:
std::string gl_vendor_;
std::string gl_renderer_;
std::string gl_version_;
DISALLOW_COPY_AND_ASSIGN(GLStringManager);
};
#endif // CHROME_BROWSER_GPU_GL_STRING_MANAGER_H_