Index: content/public/browser/gpu_data_manager_observer.h |
diff --git a/content/public/browser/gpu_data_manager_observer.h b/content/public/browser/gpu_data_manager_observer.h |
index 2f36feb63e330bfb569ec6d096cbfbddbb346b8b..64a6b9e17edcc1b2378588111e3c9ec0e2656cc5 100644 |
--- a/content/public/browser/gpu_data_manager_observer.h |
+++ b/content/public/browser/gpu_data_manager_observer.h |
@@ -7,11 +7,14 @@ |
#include "base/process/kill.h" |
#include "content/common/content_export.h" |
-#include "content/public/common/gpu_memory_stats.h" |
#include "content/public/common/three_d_api_types.h" |
class GURL; |
+namespace gpu { |
+struct VideoMemoryUsageStats; |
+} |
+ |
namespace content { |
// Observers can register themselves via GpuDataManager::AddObserver, and |
@@ -23,7 +26,7 @@ class CONTENT_EXPORT GpuDataManagerObserver { |
// Called for any observers whenever there is a GPU video memory update. |
virtual void OnVideoMemoryUsageStatsUpdate( |
- const GPUVideoMemoryUsageStats& video_memory_usage_stats) {} |
+ const gpu::VideoMemoryUsageStats& video_memory_usage_stats) {} |
// Indicates that client 3D APIs (Pepper 3D, WebGL) were just blocked on the |
// given page, specifically because the GPU was reset recently. |