Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(115)

Unified Diff: content/public/common/gpu_info.cc

Issue 10854076: Add GPU memory tab to the task manager. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Change OnVidmemUsageStats to OnVidmemUsageStatsReceived Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/public/common/gpu_info.cc
diff --git a/content/public/common/gpu_info.cc b/content/public/common/gpu_info.cc
index af3ea48c22608f3901072f025d0097b4f3e111ab..9d42adb4cad9cec949e02b08193d948d003e483c 100644
--- a/content/public/common/gpu_info.cc
+++ b/content/public/common/gpu_info.cc
@@ -24,4 +24,16 @@ GPUInfo::GPUInfo()
GPUInfo::~GPUInfo() { }
+GPUVidmemUsageStats::GPUVidmemUsageStats() { }
+
+GPUVidmemUsageStats::~GPUVidmemUsageStats() { }
+
+GPUVidmemUsageStats::GPUProcessVidmemUsageStats::GPUProcessVidmemUsageStats()
+ : vidmem(0),
+ has_duplicates(false) {
+}
+
+GPUVidmemUsageStats::GPUProcessVidmemUsageStats::
+ ~GPUProcessVidmemUsageStats() {}
+
} // namespace content

Powered by Google App Engine
This is Rietveld 408576698