Chromium Code Reviews| 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 228 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 239 bool domain_blocking_enabled_; | 239 bool domain_blocking_enabled_; |
| 240 | 240 |
| 241 GpuDataManagerImpl* owner_; | 241 GpuDataManagerImpl* owner_; |
| 242 | 242 |
| 243 unsigned int display_count_; | 243 unsigned int display_count_; |
| 244 | 244 |
| 245 bool gpu_process_accessible_; | 245 bool gpu_process_accessible_; |
| 246 | 246 |
| 247 bool use_software_compositor_; | 247 bool use_software_compositor_; |
| 248 | 248 |
| 249 // True if all future Initialize calls should be ignored. | |
| 250 bool finalized_; | |
|
gab
2013/09/04 18:54:26
Adding this state to make sure the initialization
| |
| 251 | |
| 249 DISALLOW_COPY_AND_ASSIGN(GpuDataManagerImplPrivate); | 252 DISALLOW_COPY_AND_ASSIGN(GpuDataManagerImplPrivate); |
| 250 }; | 253 }; |
| 251 | 254 |
| 252 } // namespace content | 255 } // namespace content |
| 253 | 256 |
| 254 #endif // CONTENT_BROWSER_GPU_GPU_DATA_MANAGER_IMPL_PRIVATE_H_ | 257 #endif // CONTENT_BROWSER_GPU_GPU_DATA_MANAGER_IMPL_PRIVATE_H_ |
| 255 | 258 |
| OLD | NEW |