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

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

Issue 1084173004: Adding status to swap complete (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: address comments Created 5 years, 7 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_command_buffer_stub.cc
diff --git a/content/common/gpu/gpu_command_buffer_stub.cc b/content/common/gpu/gpu_command_buffer_stub.cc
index e14cf986092b9c8817dcd3024e2474890734c368..26919bba879de49fe4fb32229c319c8ce5bc2335 100644
--- a/content/common/gpu/gpu_command_buffer_stub.cc
+++ b/content/common/gpu/gpu_command_buffer_stub.cc
@@ -1098,8 +1098,10 @@ uint64 GpuCommandBufferStub::GetMemoryUsage() const {
}
void GpuCommandBufferStub::SendSwapBuffersCompleted(
- const std::vector<ui::LatencyInfo>& latency_info) {
- Send(new GpuCommandBufferMsg_SwapBuffersCompleted(route_id_, latency_info));
+ const std::vector<ui::LatencyInfo>& latency_info,
+ gfx::SwapResult result) {
+ Send(new GpuCommandBufferMsg_SwapBuffersCompleted(route_id_, latency_info,
+ result));
}
void GpuCommandBufferStub::SendUpdateVSyncParameters(base::TimeTicks timebase,

Powered by Google App Engine
This is Rietveld 408576698