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

Unified Diff: cc/output/promise.cc

Issue 1126963006: Move VISUAL_STATE promise to activation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Current state (presubmit warnings, cc_unittests tests failing) 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: cc/output/promise.cc
diff --git a/cc/output/promise.cc b/cc/output/promise.cc
new file mode 100644
index 0000000000000000000000000000000000000000..bbf5e4e79900b3b7e5e70edbd0dca01395f09c40
--- /dev/null
+++ b/cc/output/promise.cc
@@ -0,0 +1,28 @@
+// 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 "cc/output/promise.h"
+
+namespace cc {
+
+Promise::~Promise() {
+}
+
+bool Promise::OnDidSwap(CompositorFrameMetadata*) {
+ return false;
+}
+
+bool Promise::OnDidNotSwap(Promise::DidNotSwap::Reason) {
+ return false;
+}
+
+bool Promise::OnDidActivate(CompositorFrameMetadata*) {
+ return false;
+}
+
+bool Promise::OnDidNotActivate(Promise::DidNotActivate::Reason) {
+ return false;
+}
+
+}
« no previous file with comments | « cc/output/promise.h ('k') | cc/output/promise_list.h » ('j') | cc/trees/layer_tree_host_impl.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698