gecko-dev/gfx/vr/ipc/VRProcessParent.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

70 строки
1.9 KiB
C
Исходник Обычный вид История

/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#ifndef GFX_VR_PROCESS_PARENT_H
#define GFX_VR_PROCESS_PARENT_H
#include "mozilla/UniquePtr.h"
#include "mozilla/ipc/GeckoChildProcessHost.h"
#include "mozilla/ipc/TaskFactory.h"
namespace mozilla {
namespace gfx {
class VRChild;
class VRProcessParent final : public mozilla::ipc::GeckoChildProcessHost {
public:
class Listener {
public:
virtual void OnProcessLaunchComplete(VRProcessParent* aParent) {}
// Follow GPU and RDD process manager, adding this to avoid
// unexpectedly shutdown or had its connection severed.
// This is not called if an error occurs after calling Shutdown().
virtual void OnProcessUnexpectedShutdown(VRProcessParent* aParent) {}
};
explicit VRProcessParent(Listener* aListener);
bool Launch();
void Shutdown();
void DestroyProcess();
bool CanShutdown() override { return true; }
void OnChannelError() override;
void OnChannelConnected(int32_t peer_pid) override;
void OnChannelConnectedTask();
void OnChannelErrorTask();
void OnChannelClosed();
bool IsConnected() const;
base::ProcessId OtherPid();
VRChild* GetActor() const { return mVRChild.get(); }
private:
~VRProcessParent();
DISALLOW_COPY_AND_ASSIGN(VRProcessParent);
void InitAfterConnect(bool aSucceeded);
void KillHard(const char* aReason);
UniquePtr<VRChild> mVRChild;
mozilla::ipc::TaskFactory<VRProcessParent> mTaskFactory;
nsCOMPtr<nsIThread> mLaunchThread;
Listener* mListener;
bool mChannelClosed;
bool mShutdownRequested;
};
} // namespace gfx
} // namespace mozilla
#endif // ifndef GFX_VR_PROCESS_PARENT_H