OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 CONTENT_PUBLIC_BROWSER_GPU_DATA_MANAGER_H_ | 5 #ifndef CONTENT_PUBLIC_BROWSER_GPU_DATA_MANAGER_H_ |
6 #define CONTENT_PUBLIC_BROWSER_GPU_DATA_MANAGER_H_ | 6 #define CONTENT_PUBLIC_BROWSER_GPU_DATA_MANAGER_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "content/common/content_export.h" | 10 #include "content/common/content_export.h" |
11 #include "content/public/common/gpu_feature_type.h" | 11 #include "content/public/common/gpu_feature_type.h" |
12 #include "content/public/common/gpu_switching_option.h" | |
13 | 12 |
14 class FilePath; | 13 class FilePath; |
15 | 14 |
16 namespace base { | 15 namespace base { |
17 class ListValue; | 16 class ListValue; |
18 } | 17 } |
19 | 18 |
20 namespace content { | 19 namespace content { |
21 | 20 |
22 class GpuDataManagerObserver; | 21 class GpuDataManagerObserver; |
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
79 virtual void AddObserver(GpuDataManagerObserver* observer) = 0; | 78 virtual void AddObserver(GpuDataManagerObserver* observer) = 0; |
80 virtual void RemoveObserver(GpuDataManagerObserver* observer) = 0; | 79 virtual void RemoveObserver(GpuDataManagerObserver* observer) = 0; |
81 | 80 |
82 protected: | 81 protected: |
83 virtual ~GpuDataManager() {} | 82 virtual ~GpuDataManager() {} |
84 }; | 83 }; |
85 | 84 |
86 }; // namespace content | 85 }; // namespace content |
87 | 86 |
88 #endif // CONTENT_PUBLIC_BROWSER_GPU_DATA_MANAGER_H_ | 87 #endif // CONTENT_PUBLIC_BROWSER_GPU_DATA_MANAGER_H_ |
OLD | NEW |