2018-08-07 21:20:34 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* 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/. */
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace gfx {
|
|
|
|
|
|
|
|
// IPC for VR-Content process
|
|
|
|
async protocol PVRGPU
|
|
|
|
{
|
|
|
|
parent:
|
2018-08-21 00:58:28 +03:00
|
|
|
async StartVRService();
|
|
|
|
async StopVRService();
|
2018-08-07 21:20:34 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
} // gfx
|
|
|
|
} // mozilla
|