OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CHROME_BROWSER_GPU_BLACKLIST_H_ | 5 #ifndef CONTENT_BROWSER_GPU_BLACKLIST_H_ |
6 #define CHROME_BROWSER_GPU_BLACKLIST_H_ | 6 #define CONTENT_BROWSER_GPU_BLACKLIST_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <string> | 9 #include <string> |
10 #include <vector> | 10 #include <vector> |
11 | 11 |
12 #include "base/basictypes.h" | 12 #include "base/basictypes.h" |
13 #include "base/scoped_ptr.h" | 13 #include "base/scoped_ptr.h" |
14 #include "chrome/common/gpu_feature_flags.h" | 14 #include "chrome/common/gpu_feature_flags.h" |
15 | 15 |
16 class DictionaryValue; | 16 class DictionaryValue; |
(...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
217 // This records all the blacklist entries that are appliable to the current | 217 // This records all the blacklist entries that are appliable to the current |
218 // user machine. It is updated everytime DetermineGpuFeatureFlags() is | 218 // user machine. It is updated everytime DetermineGpuFeatureFlags() is |
219 // called and is used later by GetGpuFeatureFlagEntries(). | 219 // called and is used later by GetGpuFeatureFlagEntries(). |
220 std::vector<GpuBlacklistEntry*> active_entries_; | 220 std::vector<GpuBlacklistEntry*> active_entries_; |
221 | 221 |
222 uint32 max_entry_id_; | 222 uint32 max_entry_id_; |
223 | 223 |
224 DISALLOW_COPY_AND_ASSIGN(GpuBlacklist); | 224 DISALLOW_COPY_AND_ASSIGN(GpuBlacklist); |
225 }; | 225 }; |
226 | 226 |
227 #endif // CHROME_BROWSER_GPU_BLACKLIST_H_ | 227 #endif // CONTENT_BROWSER_GPU_BLACKLIST_H_ |
228 | |
OLD | NEW |