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 #pragma once | |
8 | 7 |
9 #include "content/common/content_export.h" | 8 #include "content/common/content_export.h" |
10 #include "content/public/common/gpu_feature_type.h" | 9 #include "content/public/common/gpu_feature_type.h" |
11 | 10 |
12 class FilePath; | 11 class FilePath; |
13 | 12 |
14 namespace base { | 13 namespace base { |
15 class ListValue; | 14 class ListValue; |
16 } | 15 } |
17 | 16 |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
60 virtual void AddObserver(GpuDataManagerObserver* observer) = 0; | 59 virtual void AddObserver(GpuDataManagerObserver* observer) = 0; |
61 virtual void RemoveObserver(GpuDataManagerObserver* observer) = 0; | 60 virtual void RemoveObserver(GpuDataManagerObserver* observer) = 0; |
62 | 61 |
63 protected: | 62 protected: |
64 virtual ~GpuDataManager() {} | 63 virtual ~GpuDataManager() {} |
65 }; | 64 }; |
66 | 65 |
67 }; // namespace content | 66 }; // namespace content |
68 | 67 |
69 #endif // CONTENT_PUBLIC_BROWSER_GPU_DATA_MANAGER_H_ | 68 #endif // CONTENT_PUBLIC_BROWSER_GPU_DATA_MANAGER_H_ |
OLD | NEW |