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

Unified Diff: content/common/gpu/gpu_memory_manager_unittest.cc

Issue 1256613002: Add tracing for GL texture objects (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@browser_process_id
Patch Set: remove unneeded explicit Created 5 years, 5 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/common/gpu/gpu_memory_manager_unittest.cc
diff --git a/content/common/gpu/gpu_memory_manager_unittest.cc b/content/common/gpu/gpu_memory_manager_unittest.cc
index d0237fb5ec0e876d4f7429aaff6dd40a7129a752..791d611b172ea701b878fb1c75316edeef59875e 100644
--- a/content/common/gpu/gpu_memory_manager_unittest.cc
+++ b/content/common/gpu/gpu_memory_manager_unittest.cc
@@ -21,6 +21,9 @@ class FakeMemoryTracker : public gpu::gles2::MemoryTracker {
bool EnsureGPUMemoryAvailable(size_t /* size_needed */) override {
return true;
}
+ uint64_t ClientTracingId() override { return 0; }
petrcermak 2015/07/30 08:03:11 nit: This should be const
ericrk 2015/07/30 16:58:36 Done.
+ int ClientId() override { return 0; }
petrcermak 2015/07/30 08:03:11 ditto
ericrk 2015/07/30 16:58:36 Done.
+
private:
~FakeMemoryTracker() override {}
};

Powered by Google App Engine
This is Rietveld 408576698