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

Unified Diff: content/public/browser/gpu_data_manager.h

Issue 15745014: Move GPU device/driver info related code from content to gpu. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: rebase Created 7 years, 7 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
« no previous file with comments | « content/gpu/gpu_main.cc ('k') | content/public/common/content_client.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/browser/gpu_data_manager.h
===================================================================
--- content/public/browser/gpu_data_manager.h (revision 201645)
+++ content/public/browser/gpu_data_manager.h (working copy)
@@ -19,10 +19,13 @@
class ListValue;
}
+namespace gpu {
+struct GPUInfo;
+}
+
namespace content {
class GpuDataManagerObserver;
-struct GPUInfo;
// This class is fully thread-safe.
class GpuDataManager {
@@ -34,11 +37,11 @@
CONTENT_EXPORT static GpuDataManager* GetInstance();
virtual void InitializeForTesting(const std::string& gpu_blacklist_json,
- const content::GPUInfo& gpu_info) = 0;
+ const gpu::GPUInfo& gpu_info) = 0;
virtual bool IsFeatureBlacklisted(int feature) const = 0;
- virtual GPUInfo GetGPUInfo() const = 0;
+ virtual gpu::GPUInfo GetGPUInfo() const = 0;
// Retrieves a list of process handles for all gpu processes.
virtual void GetGpuProcessHandles(
« no previous file with comments | « content/gpu/gpu_main.cc ('k') | content/public/common/content_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698