blob: 1357a762ce0916c328f2dbba7e3763c1abc6ced7 (
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
|
// 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_EMBEDDER_PROCESS_DELEGATE_H_
#define MOJO_EDK_EMBEDDER_PROCESS_DELEGATE_H_
#include "mojo/edk/system/system_impl_export.h"
#include "mojo/public/cpp/system/macros.h"
namespace mojo {
namespace edk {
// An interface for process delegates.
class MOJO_SYSTEM_IMPL_EXPORT ProcessDelegate {
public:
// Called when |ShutdownIPCSupport()| has completed work on the I/O thread.
virtual void OnShutdownComplete() = 0;
protected:
ProcessDelegate() {}
virtual ~ProcessDelegate() {}
private:
MOJO_DISALLOW_COPY_AND_ASSIGN(ProcessDelegate);
};
} // namespace edk
} // namespace mojo
#endif // MOJO_EDK_EMBEDDER_PROCESS_DELEGATE_H_
|