| 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 <list> | 8 #include <list> |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| 11 #include "base/callback_forward.h" | 11 #include "base/callback_forward.h" |
| 12 #include "base/process/process.h" | 12 #include "base/process/process.h" |
| 13 #include "content/common/content_export.h" | 13 #include "content/common/content_export.h" |
| 14 | 14 |
| 15 class GURL; | 15 class GURL; |
| 16 | 16 |
| 17 namespace base { | 17 namespace base { |
| 18 class FilePath; | 18 class FilePath; |
| 19 class ListValue; | |
| 20 } | 19 } |
| 21 | 20 |
| 22 namespace gpu { | 21 namespace gpu { |
| 23 struct GPUInfo; | 22 struct GPUInfo; |
| 24 } | 23 } |
| 25 | 24 |
| 26 namespace content { | 25 namespace content { |
| 27 | 26 |
| 28 class GpuDataManagerObserver; | 27 class GpuDataManagerObserver; |
| 29 | 28 |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 111 // the backlists decision and applying commandline switches. | 110 // the backlists decision and applying commandline switches. |
| 112 virtual void SetGpuInfo(const gpu::GPUInfo& gpu_info) = 0; | 111 virtual void SetGpuInfo(const gpu::GPUInfo& gpu_info) = 0; |
| 113 | 112 |
| 114 protected: | 113 protected: |
| 115 virtual ~GpuDataManager() {} | 114 virtual ~GpuDataManager() {} |
| 116 }; | 115 }; |
| 117 | 116 |
| 118 }; // namespace content | 117 }; // namespace content |
| 119 | 118 |
| 120 #endif // CONTENT_PUBLIC_BROWSER_GPU_DATA_MANAGER_H_ | 119 #endif // CONTENT_PUBLIC_BROWSER_GPU_DATA_MANAGER_H_ |
| OLD | NEW |