| 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/process.h" | 12 #include "base/process.h" |
| 12 #include "content/common/content_export.h" | 13 #include "content/common/content_export.h" |
| 13 #include "content/public/common/gpu_feature_type.h" | 14 #include "content/public/common/gpu_feature_type.h" |
| 14 #include "content/public/common/gpu_switching_option.h" | 15 #include "content/public/common/gpu_switching_option.h" |
| 15 | 16 |
| 16 class GURL; | 17 class GURL; |
| 17 | 18 |
| 18 namespace base { | 19 namespace base { |
| 19 class FilePath; | 20 class FilePath; |
| 20 class ListValue; | 21 class ListValue; |
| (...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 95 std::string* gl_renderer, | 96 std::string* gl_renderer, |
| 96 std::string* gl_version) = 0; | 97 std::string* gl_version) = 0; |
| 97 | 98 |
| 98 protected: | 99 protected: |
| 99 virtual ~GpuDataManager() {} | 100 virtual ~GpuDataManager() {} |
| 100 }; | 101 }; |
| 101 | 102 |
| 102 }; // namespace content | 103 }; // namespace content |
| 103 | 104 |
| 104 #endif // CONTENT_PUBLIC_BROWSER_GPU_DATA_MANAGER_H_ | 105 #endif // CONTENT_PUBLIC_BROWSER_GPU_DATA_MANAGER_H_ |
| OLD | NEW |