Add strings for the upcoming Settings API UI on the chrome://settings page.
[chromium-blink-merge.git] / gpu / config / gpu_driver_bug_list.h
blob833ff564b8bdd0ad84977553f305a94c03153e10
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
3 // found in the LICENSE file.
5 #ifndef GPU_CONFIG_GPU_DRIVER_BUG_LIST_H_
6 #define GPU_CONFIG_GPU_DRIVER_BUG_LIST_H_
8 #include <string>
10 #include "gpu/config/gpu_control_list.h"
11 #include "gpu/config/gpu_driver_bug_workaround_type.h"
12 #include "gpu/gpu_export.h"
14 namespace gpu {
16 class GPU_EXPORT GpuDriverBugList : public GpuControlList {
17 public:
18 virtual ~GpuDriverBugList();
20 static GpuDriverBugList* Create();
22 private:
23 GpuDriverBugList();
25 DISALLOW_COPY_AND_ASSIGN(GpuDriverBugList);
28 struct DriverBugInfo {
29 GpuDriverBugWorkaroundType feature_type;
30 const char* feature_name;
33 const struct DriverBugInfo* GetDriverBugWorkarounds();
35 } // namespace gpu
37 #endif // GPU_CONFIG_GPU_DRIVER_BUG_LIST_H_