blob: eafcb1f85e053f1f21cdfe1c0d3b6544a31925ef [file] [log] [blame]
// Copyright 2014 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.
#ifndef CC_RESOURCES_SINGLE_RELEASE_CALLBACK_IMPL_H_
#define CC_RESOURCES_SINGLE_RELEASE_CALLBACK_IMPL_H_
#include <memory>
#include "base/memory/ptr_util.h"
#include "cc/base/cc_export.h"
#include "cc/resources/release_callback_impl.h"
namespace cc {
class CC_EXPORT SingleReleaseCallbackImpl {
public:
static std::unique_ptr<SingleReleaseCallbackImpl> Create(
const ReleaseCallbackImpl& cb) {
return base::WrapUnique(new SingleReleaseCallbackImpl(cb));
}
~SingleReleaseCallbackImpl();
void Run(const gpu::SyncToken& sync_token,
bool is_lost,
BlockingTaskRunner* main_thread_task_runner);
private:
explicit SingleReleaseCallbackImpl(const ReleaseCallbackImpl& callback);
ReleaseCallbackImpl callback_;
};
} // namespace cc
#endif // CC_RESOURCES_SINGLE_RELEASE_CALLBACK_IMPL_H_