Chromium Code Reviews| Index: gpu/config/gpu_driver_bug_list.h |
| diff --git a/gpu/config/gpu_driver_bug_list.h b/gpu/config/gpu_driver_bug_list.h |
| index 0ec839ed4eecafe17b2d88d140e0352b30e4c9ef..3f36bfccee5b42b920f11e04f7b6c6dd254496d1 100644 |
| --- a/gpu/config/gpu_driver_bug_list.h |
| +++ b/gpu/config/gpu_driver_bug_list.h |
| @@ -21,6 +21,7 @@ class GPU_EXPORT GpuDriverBugList : public GpuControlList { |
| ~GpuDriverBugList() override; |
| static GpuDriverBugList* Create(); |
|
piman
2017/03/30 23:44:41
nit: ditto re: std::unique_ptr
Zhenyao Mo
2017/03/31 19:14:14
Done.
|
| + static GpuDriverBugList* Create(const GpuControlListData& data); |
| // Append |workarounds| with these passed in through the |
| // |command_line|. |
| @@ -34,7 +35,7 @@ class GPU_EXPORT GpuDriverBugList : public GpuControlList { |
| static void AppendAllWorkarounds(std::vector<const char*>* workarounds); |
| private: |
| - GpuDriverBugList(); |
| + GpuDriverBugList(const GpuControlListData& data); |
|
piman
2017/03/30 23:44:41
nit: explicit
Zhenyao Mo
2017/03/31 19:14:14
Done.
|
| DISALLOW_COPY_AND_ASSIGN(GpuDriverBugList); |
| }; |