| 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_DRIVER_BUG_LIST_H_ | 5 #ifndef GPU_CONFIG_GPU_DRIVER_BUG_LIST_H_ |
| 6 #define GPU_CONFIG_GPU_DRIVER_BUG_LIST_H_ | 6 #define GPU_CONFIG_GPU_DRIVER_BUG_LIST_H_ |
| 7 | 7 |
| 8 #include <set> | 8 #include <set> |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| 11 #include "base/command_line.h" | 11 #include "base/command_line.h" |
| 12 #include "base/macros.h" |
| 12 #include "gpu/config/gpu_control_list.h" | 13 #include "gpu/config/gpu_control_list.h" |
| 13 #include "gpu/config/gpu_driver_bug_workaround_type.h" | 14 #include "gpu/config/gpu_driver_bug_workaround_type.h" |
| 14 #include "gpu/gpu_export.h" | 15 #include "gpu/gpu_export.h" |
| 15 | 16 |
| 16 namespace gpu { | 17 namespace gpu { |
| 17 | 18 |
| 18 class GPU_EXPORT GpuDriverBugList : public GpuControlList { | 19 class GPU_EXPORT GpuDriverBugList : public GpuControlList { |
| 19 public: | 20 public: |
| 20 ~GpuDriverBugList() override; | 21 ~GpuDriverBugList() override; |
| 21 | 22 |
| 22 static GpuDriverBugList* Create(); | 23 static GpuDriverBugList* Create(); |
| 23 | 24 |
| 24 // Append |workarounds| with these passed in through the | 25 // Append |workarounds| with these passed in through the |
| 25 // |command_line|. | 26 // |command_line|. |
| 26 static void AppendWorkaroundsFromCommandLine( | 27 static void AppendWorkaroundsFromCommandLine( |
| 27 std::set<int>* workarounds, | 28 std::set<int>* workarounds, |
| 28 const base::CommandLine& command_line); | 29 const base::CommandLine& command_line); |
| 29 | 30 |
| 30 private: | 31 private: |
| 31 GpuDriverBugList(); | 32 GpuDriverBugList(); |
| 32 | 33 |
| 33 DISALLOW_COPY_AND_ASSIGN(GpuDriverBugList); | 34 DISALLOW_COPY_AND_ASSIGN(GpuDriverBugList); |
| 34 }; | 35 }; |
| 35 | 36 |
| 36 } // namespace gpu | 37 } // namespace gpu |
| 37 | 38 |
| 38 #endif // GPU_CONFIG_GPU_DRIVER_BUG_LIST_H_ | 39 #endif // GPU_CONFIG_GPU_DRIVER_BUG_LIST_H_ |
| 39 | 40 |
| OLD | NEW |