| 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 GPU_CONFIG_GPU_CONTROL_LIST_H_ | 5 #ifndef GPU_CONFIG_GPU_CONTROL_LIST_H_ |
| 6 #define GPU_CONFIG_GPU_CONTROL_LIST_H_ | 6 #define GPU_CONFIG_GPU_CONTROL_LIST_H_ |
| 7 | 7 |
| 8 #include <set> | 8 #include <set> |
| 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/containers/hash_tables.h" | 13 #include "base/containers/hash_tables.h" |
| 14 #include "base/gtest_prod_util.h" | |
| 15 #include "base/memory/ref_counted.h" | 14 #include "base/memory/ref_counted.h" |
| 16 #include "base/memory/scoped_ptr.h" | 15 #include "base/memory/scoped_ptr.h" |
| 17 #include "base/values.h" | 16 #include "base/values.h" |
| 18 #include "build/build_config.h" | 17 #include "build/build_config.h" |
| 19 #include "gpu/gpu_export.h" | 18 #include "gpu/gpu_export.h" |
| 20 | 19 |
| 21 namespace gpu { | 20 namespace gpu { |
| 22 struct GPUInfo; | 21 struct GPUInfo; |
| 23 | 22 |
| 24 class GPU_EXPORT GpuControlList { | 23 class GPU_EXPORT GpuControlList { |
| (...skipping 463 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 488 bool supports_feature_type_all_; | 487 bool supports_feature_type_all_; |
| 489 | 488 |
| 490 bool control_list_logging_enabled_; | 489 bool control_list_logging_enabled_; |
| 491 std::string control_list_logging_name_; | 490 std::string control_list_logging_name_; |
| 492 }; | 491 }; |
| 493 | 492 |
| 494 } // namespace gpu | 493 } // namespace gpu |
| 495 | 494 |
| 496 #endif // GPU_CONFIG_GPU_CONTROL_LIST_H_ | 495 #endif // GPU_CONFIG_GPU_CONTROL_LIST_H_ |
| 497 | 496 |
| OLD | NEW |