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> |
11 #include <string> | 11 #include <string> |
12 #include <vector> | 12 #include <vector> |
13 | 13 |
| 14 #include "base/gtest_prod_util.h" |
14 #include "base/memory/ref_counted.h" | 15 #include "base/memory/ref_counted.h" |
15 #include "base/memory/singleton.h" | 16 #include "base/memory/singleton.h" |
16 #include "base/observer_list_threadsafe.h" | 17 #include "base/observer_list_threadsafe.h" |
17 #include "content/browser/gpu/gpu_data_manager_impl.h" | 18 #include "content/browser/gpu/gpu_data_manager_impl.h" |
18 #include "gpu/config/gpu_blacklist.h" | 19 #include "gpu/config/gpu_blacklist.h" |
19 #include "gpu/config/gpu_driver_bug_list.h" | 20 #include "gpu/config/gpu_driver_bug_list.h" |
20 | 21 |
21 namespace base { | 22 namespace base { |
22 class CommandLine; | 23 class CommandLine; |
23 } | 24 } |
(...skipping 251 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
275 bool finalized_; | 276 bool finalized_; |
276 | 277 |
277 std::string disabled_extensions_; | 278 std::string disabled_extensions_; |
278 | 279 |
279 DISALLOW_COPY_AND_ASSIGN(GpuDataManagerImplPrivate); | 280 DISALLOW_COPY_AND_ASSIGN(GpuDataManagerImplPrivate); |
280 }; | 281 }; |
281 | 282 |
282 } // namespace content | 283 } // namespace content |
283 | 284 |
284 #endif // CONTENT_BROWSER_GPU_GPU_DATA_MANAGER_IMPL_PRIVATE_H_ | 285 #endif // CONTENT_BROWSER_GPU_GPU_DATA_MANAGER_IMPL_PRIVATE_H_ |
OLD | NEW |