blob: b471381fbf2e6edbe0e65b63213dab33a3f635d6 [file] [log] [blame]
Torne (Richard Coles)d0247b12013-09-19 22:36:51 +01001// Copyright 2013 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#ifndef CC_RESOURCES_RELEASE_CALLBACK_H_
6#define CC_RESOURCES_RELEASE_CALLBACK_H_
7
8#include "base/callback.h"
9
10namespace cc {
11
Torne (Richard Coles)5d1f7b12014-02-21 12:16:55 +000012typedef base::Callback<void(uint32 sync_point, bool is_lost)> ReleaseCallback;
Torne (Richard Coles)d0247b12013-09-19 22:36:51 +010013
14} // namespace cc
15
16#endif // CC_RESOURCES_RELEASE_CALLBACK_H_