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

Unified Diff: services/ui/gpu/display_compositor/compositor_frame_sink_impl.cc

Issue 2167713002: cc: Delete SurfaceDrawStatus (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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: services/ui/gpu/display_compositor/compositor_frame_sink_impl.cc
diff --git a/services/ui/gpu/display_compositor/compositor_frame_sink_impl.cc b/services/ui/gpu/display_compositor/compositor_frame_sink_impl.cc
index 21290a65e866993cab13010a52234b142fe90439..9b1bd83f9b46f8ad5bc944801545c2cf6002d30f 100644
--- a/services/ui/gpu/display_compositor/compositor_frame_sink_impl.cc
+++ b/services/ui/gpu/display_compositor/compositor_frame_sink_impl.cc
@@ -14,9 +14,8 @@ namespace gpu {
namespace {
void CallCallback(
sky 2016/07/20 15:56:35 Is this function still needed? Can the callback be
Fady Samuel 2016/07/20 20:31:33 Done.
- const mojom::CompositorFrameSink::SubmitCompositorFrameCallback& callback,
- cc::SurfaceDrawStatus draw_status) {
- callback.Run(static_cast<mojom::CompositorFrameDrawStatus>(draw_status));
+ const mojom::CompositorFrameSink::SubmitCompositorFrameCallback& callback) {
+ callback.Run();
}
}

Powered by Google App Engine
This is Rietveld 408576698