blob: bb1f45804a4c20d07fb2b4908c2387690a22eb0c (
plain)
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
// 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.
#ifndef MOJO_EDK_TEST_SCOPED_IPC_SUPPORT_H_
#define MOJO_EDK_TEST_SCOPED_IPC_SUPPORT_H_
#include "base/callback.h"
#include "base/memory/ref_counted.h"
#include "base/run_loop.h"
#include "base/task_runner.h"
#include "mojo/edk/embedder/process_delegate.h"
#include "mojo/edk/embedder/scoped_platform_handle.h"
#include "mojo/public/cpp/system/macros.h"
namespace mojo {
namespace edk {
namespace test {
namespace internal {
class ScopedIPCSupportHelper {
public:
ScopedIPCSupportHelper();
~ScopedIPCSupportHelper();
void Init(ProcessDelegate* process_delegate,
scoped_refptr<base::TaskRunner> io_thread_task_runner);
void OnShutdownCompleteImpl();
private:
scoped_refptr<base::TaskRunner> io_thread_task_runner_;
base::RunLoop run_loop_;
DISALLOW_COPY_AND_ASSIGN(ScopedIPCSupportHelper);
};
} // namespace internal
// A simple class that calls |InitIPCSupport()| on construction and
// |ShutdownIPCSupport()| on destruction.
class ScopedIPCSupport : public ProcessDelegate {
public:
explicit ScopedIPCSupport(
scoped_refptr<base::TaskRunner> io_thread_task_runner);
~ScopedIPCSupport() override;
private:
// |ProcessDelegate| implementation:
// Note: Executed on the I/O thread.
void OnShutdownComplete() override;
internal::ScopedIPCSupportHelper helper_;
DISALLOW_COPY_AND_ASSIGN(ScopedIPCSupport);
};
} // namespace test
} // namespace edk
} // namespace mojo
#endif // MOJO_EDK_TEST_SCOPED_IPC_SUPPORT_H_
|