| Index: device/vr/vr_client_dispatcher.h
|
| diff --git a/device/vr/vr_client_dispatcher.h b/device/vr/vr_client_dispatcher.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..7be327708daa54058e2b5a21dccd4762a5fc443c
|
| --- /dev/null
|
| +++ b/device/vr/vr_client_dispatcher.h
|
| @@ -0,0 +1,19 @@
|
| +// Copyright 2016 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 DEVICE_VR_VR_CLIENT_DISPATCHER_H
|
| +#define DEVICE_VR_VR_CLIENT_DISPATCHER_H
|
| +
|
| +#include "device/vr/vr_service.mojom.h"
|
| +
|
| +namespace device {
|
| +
|
| +class VRClientDispatcher {
|
| + public:
|
| + virtual void OnDeviceChanged(VRDisplayPtr device) = 0;
|
| +};
|
| +
|
| +} // namespace device
|
| +
|
| +#endif // DEVICE_VR_VR_CLIENT_DISPATCHER_H
|
|
|