- add sources.
[platform/framework/web/crosswalk.git] / src / gpu / config / gpu_driver_bug_list.h
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.
4
5 #ifndef GPU_CONFIG_GPU_DRIVER_BUG_LIST_H_
6 #define GPU_CONFIG_GPU_DRIVER_BUG_LIST_H_
7
8 #include <string>
9
10 #include "gpu/config/gpu_control_list.h"
11 #include "gpu/gpu_export.h"
12
13 namespace gpu {
14
15 class GPU_EXPORT GpuDriverBugList : public GpuControlList {
16  public:
17   virtual ~GpuDriverBugList();
18
19   static GpuDriverBugList* Create();
20
21  private:
22   GpuDriverBugList();
23
24   DISALLOW_COPY_AND_ASSIGN(GpuDriverBugList);
25 };
26
27 }  // namespace gpu
28
29 #endif  // GPU_CONFIG_GPU_DRIVER_BUG_LIST_H_
30