OLD | NEW |
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 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 | 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_BROWSER_GPU_GPU_DATA_MANAGER_IMPL_PRIVATE_H_ | 5 #ifndef CONTENT_BROWSER_GPU_GPU_DATA_MANAGER_IMPL_PRIVATE_H_ |
6 #define CONTENT_BROWSER_GPU_GPU_DATA_MANAGER_IMPL_PRIVATE_H_ | 6 #define CONTENT_BROWSER_GPU_GPU_DATA_MANAGER_IMPL_PRIVATE_H_ |
7 | 7 |
8 #include <stddef.h> | 8 #include <stddef.h> |
9 #include <stdint.h> | 9 #include <stdint.h> |
10 | 10 |
(...skipping 10 matching lines...) Expand all Loading... |
21 #include "base/observer_list_threadsafe.h" | 21 #include "base/observer_list_threadsafe.h" |
22 #include "build/build_config.h" | 22 #include "build/build_config.h" |
23 #include "content/browser/gpu/gpu_data_manager_impl.h" | 23 #include "content/browser/gpu/gpu_data_manager_impl.h" |
24 #include "gpu/config/gpu_blacklist.h" | 24 #include "gpu/config/gpu_blacklist.h" |
25 #include "gpu/config/gpu_driver_bug_list.h" | 25 #include "gpu/config/gpu_driver_bug_list.h" |
26 | 26 |
27 namespace base { | 27 namespace base { |
28 class CommandLine; | 28 class CommandLine; |
29 } | 29 } |
30 | 30 |
| 31 namespace gpu { |
| 32 struct VideoMemoryUsageStats; |
| 33 } |
| 34 |
31 namespace content { | 35 namespace content { |
32 | 36 |
33 class CONTENT_EXPORT GpuDataManagerImplPrivate { | 37 class CONTENT_EXPORT GpuDataManagerImplPrivate { |
34 public: | 38 public: |
35 static GpuDataManagerImplPrivate* Create(GpuDataManagerImpl* owner); | 39 static GpuDataManagerImplPrivate* Create(GpuDataManagerImpl* owner); |
36 | 40 |
37 void InitializeForTesting( | 41 void InitializeForTesting( |
38 const std::string& gpu_blacklist_json, | 42 const std::string& gpu_blacklist_json, |
39 const gpu::GPUInfo& gpu_info); | 43 const gpu::GPUInfo& gpu_info); |
40 bool IsFeatureBlacklisted(int feature) const; | 44 bool IsFeatureBlacklisted(int feature) const; |
(...skipping 18 matching lines...) Expand all Loading... |
59 void GetGLStrings(std::string* gl_vendor, | 63 void GetGLStrings(std::string* gl_vendor, |
60 std::string* gl_renderer, | 64 std::string* gl_renderer, |
61 std::string* gl_version); | 65 std::string* gl_version); |
62 void DisableHardwareAcceleration(); | 66 void DisableHardwareAcceleration(); |
63 | 67 |
64 void Initialize(); | 68 void Initialize(); |
65 | 69 |
66 void UpdateGpuInfo(const gpu::GPUInfo& gpu_info); | 70 void UpdateGpuInfo(const gpu::GPUInfo& gpu_info); |
67 | 71 |
68 void UpdateVideoMemoryUsageStats( | 72 void UpdateVideoMemoryUsageStats( |
69 const GPUVideoMemoryUsageStats& video_memory_usage_stats); | 73 const gpu::VideoMemoryUsageStats& video_memory_usage_stats); |
70 | 74 |
71 void AppendRendererCommandLine(base::CommandLine* command_line) const; | 75 void AppendRendererCommandLine(base::CommandLine* command_line) const; |
72 | 76 |
73 void AppendGpuCommandLine(base::CommandLine* command_line) const; | 77 void AppendGpuCommandLine(base::CommandLine* command_line) const; |
74 | 78 |
75 void AppendPluginCommandLine(base::CommandLine* command_line) const; | 79 void AppendPluginCommandLine(base::CommandLine* command_line) const; |
76 | 80 |
77 void UpdateRendererWebPrefs(WebPreferences* prefs) const; | 81 void UpdateRendererWebPrefs(WebPreferences* prefs) const; |
78 | 82 |
79 std::string GetBlacklistVersion() const; | 83 std::string GetBlacklistVersion() const; |
(...skipping 196 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
276 // If one tries to call a member before initialization then it is defered | 280 // If one tries to call a member before initialization then it is defered |
277 // until Initialize() is completed. | 281 // until Initialize() is completed. |
278 std::vector<base::Closure> post_init_tasks_; | 282 std::vector<base::Closure> post_init_tasks_; |
279 | 283 |
280 DISALLOW_COPY_AND_ASSIGN(GpuDataManagerImplPrivate); | 284 DISALLOW_COPY_AND_ASSIGN(GpuDataManagerImplPrivate); |
281 }; | 285 }; |
282 | 286 |
283 } // namespace content | 287 } // namespace content |
284 | 288 |
285 #endif // CONTENT_BROWSER_GPU_GPU_DATA_MANAGER_IMPL_PRIVATE_H_ | 289 #endif // CONTENT_BROWSER_GPU_GPU_DATA_MANAGER_IMPL_PRIVATE_H_ |
OLD | NEW |