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

Unified Diff: services/gfx/compositor/backend/scheduler.cc

Issue 1552963002: Initial checkin of the new Mozart compositor. (Closed) Base URL: git@github.com:domokit/mojo.git@moz-11
Patch Set: Created 4 years, 12 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/gfx/compositor/backend/scheduler.cc
diff --git a/services/gfx/compositor/backend/scheduler.cc b/services/gfx/compositor/backend/scheduler.cc
new file mode 100644
index 0000000000000000000000000000000000000000..ac98d51afc917932575db5e0ca41bbc112901543
--- /dev/null
+++ b/services/gfx/compositor/backend/scheduler.cc
@@ -0,0 +1,15 @@
+// Copyright 2015 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "services/gfx/compositor/backend/scheduler.h"
+
+namespace compositor {
+
+SchedulerCallbacks::SchedulerCallbacks(const FrameCallback& update_callback,
+ const FrameCallback& snapshot_callback)
+ : update_callback(update_callback), snapshot_callback(snapshot_callback) {}
+
+SchedulerCallbacks::~SchedulerCallbacks() {}
+
+} // namespace compositor

Powered by Google App Engine
This is Rietveld 408576698