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

Unified Diff: chrome/browser/gpu/gpu_feature_checker.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
Index: chrome/browser/gpu/gpu_feature_checker.h
===================================================================
--- chrome/browser/gpu/gpu_feature_checker.h (revision 201645)
+++ chrome/browser/gpu/gpu_feature_checker.h (working copy)
@@ -6,9 +6,9 @@
#define CHROME_BROWSER_GPU_GPU_FEATURE_CHECKER_H_
#include "base/callback.h"
+#include "base/memory/ref_counted.h"
#include "content/public/browser/gpu_data_manager_observer.h"
-#include "content/public/common/gpu_feature_type.h"
-#include "base/memory/ref_counted.h"
+#include "gpu/config/gpu_feature_type.h"
namespace content {
class GpuDataManager;
@@ -19,7 +19,7 @@
public:
typedef base::Callback<void(bool feature_available)> FeatureAvailableCallback;
- GPUFeatureChecker(content::GpuFeatureType feature,
+ GPUFeatureChecker(gpu::GpuFeatureType feature,
FeatureAvailableCallback callback);
// Check to see if |feature_| is available on the current GPU. |callback_|
@@ -34,7 +34,7 @@
virtual ~GPUFeatureChecker();
- content::GpuFeatureType feature_;
+ gpu::GpuFeatureType feature_;
FeatureAvailableCallback callback_;
DISALLOW_COPY_AND_ASSIGN(GPUFeatureChecker);
« no previous file with comments | « chrome/browser/extensions/requirements_checker_browsertest.cc ('k') | chrome/browser/gpu/gpu_feature_checker.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698