diff options
author | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-10-20 23:56:55 +0000 |
---|---|---|
committer | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-10-20 23:56:55 +0000 |
commit | a80f5ece3d46eeb0734cfca6c716d69e7ab7aaa2 (patch) | |
tree | e1b989fd7c67f745061a481692671b1331cffe02 /content/browser/gpu/gpu_blacklist.h | |
parent | 56cbcc3ce45c1b68f9fbdbed6244bebe1f203403 (diff) | |
download | chromium_src-a80f5ece3d46eeb0734cfca6c716d69e7ab7aaa2.zip chromium_src-a80f5ece3d46eeb0734cfca6c716d69e7ab7aaa2.tar.gz chromium_src-a80f5ece3d46eeb0734cfca6c716d69e7ab7aaa2.tar.bz2 |
Move GPUInfo to content/public/common and put it into the content namespace.
BUG=98716
Review URL: http://codereview.chromium.org/8363007
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@106637 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/browser/gpu/gpu_blacklist.h')
-rw-r--r-- | content/browser/gpu/gpu_blacklist.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/content/browser/gpu/gpu_blacklist.h b/content/browser/gpu/gpu_blacklist.h index 9aa81a8..7ee77c2 100644 --- a/content/browser/gpu/gpu_blacklist.h +++ b/content/browser/gpu/gpu_blacklist.h @@ -18,12 +18,15 @@ #include "content/common/gpu/gpu_feature_flags.h" class Version; -struct GPUInfo; namespace base { class DictionaryValue; } +namespace content { +struct GPUInfo; +} + class CONTENT_EXPORT GpuBlacklist { public: enum OsType { @@ -57,7 +60,7 @@ class CONTENT_EXPORT GpuBlacklist { // current OS version. GpuFeatureFlags DetermineGpuFeatureFlags(OsType os, Version* os_version, - const GPUInfo& gpu_info); + const content::GPUInfo& gpu_info); // Collects the active entries that set the "feature" flag from the last // DetermineGpuFeatureFlags() call. This tells which entries are responsible @@ -212,7 +215,7 @@ class CONTENT_EXPORT GpuBlacklist { bool Contains(OsType os_type, const Version& os_version, BrowserChannel channel, - const GPUInfo& gpu_info) const; + const content::GPUInfo& gpu_info) const; // Returns the OsType. OsType GetOsType() const; |