forked from chromium/chromium
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcallback.h
35 lines (26 loc) · 1.09 KB
/
callback.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
// Copyright 2020 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 PDF_PPAPI_MIGRATION_CALLBACK_H_
#define PDF_PPAPI_MIGRATION_CALLBACK_H_
#include <stdint.h>
#include "base/callback_forward.h"
namespace pp {
class CompletionCallback;
} // namespace pp
namespace chrome_pdf {
// A `base::OnceCallback` compatible with `pp::CompletionCallback`. Accepts an
// `int32_t` result.
using ResultCallback = base::OnceCallback<void(int32_t)>;
// Adapts a `ResultCallback` to be invoked as a `pp::CompletionCallback`.
//
// Note that the `ResultCallback` will be deleted only when the
// `pp::CompletionCallback` runs. This implies that the `pp::CompletionCallback`
// must always be run exactly once.
//
// Also note that there is no replacement for `pp::CompletionCallbackFactory`;
// use a `base::WeakPtrFactory` on the receiver object instead.
pp::CompletionCallback PPCompletionCallbackFromResultCallback(
ResultCallback callback);
} // namespace chrome_pdf
#endif // PDF_PPAPI_MIGRATION_CALLBACK_H_