Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(5840)

Unified Diff: chrome/browser/gpu/gl_string_manager.h

Issue 435383002: adds WARP support to Chromium, for Metro mode only, on Windows 8 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: first round of tryfixes Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/gpu/gl_string_manager.h
diff --git a/chrome/browser/gpu/gl_string_manager.h b/chrome/browser/gpu/gl_string_manager.h
deleted file mode 100644
index 655cf173c009308447568676ab3f7a06e21f93f3..0000000000000000000000000000000000000000
--- a/chrome/browser/gpu/gl_string_manager.h
+++ /dev/null
@@ -1,37 +0,0 @@
-// 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 "content/public/browser/gpu_data_manager_observer.h"
-
-class PrefRegistrySimple;
-
-class GLStringManager : public content::GpuDataManagerObserver {
- public:
- static void RegisterPrefs(PrefRegistrySimple* registry);
-
- GLStringManager();
- virtual ~GLStringManager();
-
- // Get cached GL strings in local state and send them to GpuDataManager.
- void Initialize();
-
- // content::GpuDataManagerObserver
- virtual 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_
-

Powered by Google App Engine
This is Rietveld 408576698