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

Side by Side 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "cc/output/promise.h"
6
7 namespace cc {
8
9 Promise::~Promise() {
10 }
11
12 bool Promise::OnDidSwap(CompositorFrameMetadata*) {
13 return false;
14 }
15
16 bool Promise::OnDidNotSwap(Promise::DidNotSwap::Reason) {
17 return false;
18 }
19
20 bool Promise::OnDidActivate(CompositorFrameMetadata*) {
21 return false;
22 }
23
24 bool Promise::OnDidNotActivate(Promise::DidNotActivate::Reason) {
25 return false;
26 }
27
28 }
OLDNEW
« 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