| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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 CONTENT_BROWSER_GPU_GPU_DATA_MANAGER_IMPL_PRIVATE_H_ | 5 #ifndef CONTENT_BROWSER_GPU_GPU_DATA_MANAGER_IMPL_PRIVATE_H_ |
| 6 #define CONTENT_BROWSER_GPU_GPU_DATA_MANAGER_IMPL_PRIVATE_H_ | 6 #define CONTENT_BROWSER_GPU_GPU_DATA_MANAGER_IMPL_PRIVATE_H_ |
| 7 | 7 |
| 8 #include <list> | 8 #include <list> |
| 9 #include <map> | 9 #include <map> |
| 10 #include <set> | 10 #include <set> |
| (...skipping 234 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 245 DomainBlockMap blocked_domains_; | 245 DomainBlockMap blocked_domains_; |
| 246 mutable std::list<base::Time> timestamps_of_gpu_resets_; | 246 mutable std::list<base::Time> timestamps_of_gpu_resets_; |
| 247 bool domain_blocking_enabled_; | 247 bool domain_blocking_enabled_; |
| 248 | 248 |
| 249 GpuDataManagerImpl* owner_; | 249 GpuDataManagerImpl* owner_; |
| 250 | 250 |
| 251 unsigned int display_count_; | 251 unsigned int display_count_; |
| 252 | 252 |
| 253 bool gpu_process_accessible_; | 253 bool gpu_process_accessible_; |
| 254 | 254 |
| 255 bool use_software_compositor_; | |
| 256 | |
| 257 // True if all future Initialize calls should be ignored. | 255 // True if all future Initialize calls should be ignored. |
| 258 bool finalized_; | 256 bool finalized_; |
| 259 | 257 |
| 260 DISALLOW_COPY_AND_ASSIGN(GpuDataManagerImplPrivate); | 258 DISALLOW_COPY_AND_ASSIGN(GpuDataManagerImplPrivate); |
| 261 }; | 259 }; |
| 262 | 260 |
| 263 } // namespace content | 261 } // namespace content |
| 264 | 262 |
| 265 #endif // CONTENT_BROWSER_GPU_GPU_DATA_MANAGER_IMPL_PRIVATE_H_ | 263 #endif // CONTENT_BROWSER_GPU_GPU_DATA_MANAGER_IMPL_PRIVATE_H_ |
| 266 | 264 |
| OLD | NEW |