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

Unified Diff: content/browser/gpu/gpu_data_manager_impl.h

Issue 10911315: Move gpu blacklist data file to content side. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 years, 3 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: content/browser/gpu/gpu_data_manager_impl.h
===================================================================
--- content/browser/gpu/gpu_data_manager_impl.h (revision 156701)
+++ content/browser/gpu/gpu_data_manager_impl.h (working copy)
@@ -30,11 +30,8 @@
static GpuDataManagerImpl* GetInstance();
// GpuDataManager implementation.
+ virtual void Initialize(const std::string& browser_version_string) OVERRIDE;
virtual void Initialize(
- const std::string& browser_version_string,
- const std::string& gpu_blacklist_json) OVERRIDE;
- virtual void Initialize(
- const std::string& browser_version_string,
const std::string& gpu_blacklist_json,
const content::GPUInfo& gpu_info) OVERRIDE;
virtual content::GpuFeatureType GetBlacklistedFeatures() const OVERRIDE;
@@ -101,6 +98,10 @@
GpuDataManagerImpl();
virtual ~GpuDataManagerImpl();
+ void Initialize(const std::string& browser_version_string,
+ const std::string& gpu_blacklist_json,
+ const content::GPUInfo& gpu_info);
+
void UpdateBlacklistedFeatures(content::GpuFeatureType features);
// This should only be called once at initialization time, when preliminary

Powered by Google App Engine
This is Rietveld 408576698