| Index: third_party/WebKit/public/platform/modules/vr/WebVRClient.h
|
| diff --git a/third_party/WebKit/public/platform/modules/vr/WebVRClient.h b/third_party/WebKit/public/platform/modules/vr/WebVRClient.h
|
| deleted file mode 100644
|
| index 6de79d994e4b5628b08fec1c4944c8adfe9ee8a7..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/public/platform/modules/vr/WebVRClient.h
|
| +++ /dev/null
|
| @@ -1,31 +0,0 @@
|
| -// 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 WebVRClient_h
|
| -#define WebVRClient_h
|
| -
|
| -#include "public/platform/WebCallbacks.h"
|
| -#include "public/platform/WebVector.h"
|
| -#include "public/platform/modules/vr/WebVR.h"
|
| -
|
| -namespace blink {
|
| -
|
| -// Success and failure callbacks for getDevices.
|
| -using WebVRGetDevicesCallback = WebCallbacks<const WebVector<WebVRDevice>&, void>;
|
| -
|
| -// Client handling VR device communication for a given WebFrame.
|
| -class WebVRClient {
|
| -public:
|
| - virtual ~WebVRClient() { }
|
| -
|
| - virtual void getDevices(WebVRGetDevicesCallback*) = 0;
|
| -
|
| - virtual void getSensorState(unsigned index, blink::WebHMDSensorState& into) = 0;
|
| -
|
| - virtual void resetSensor(unsigned index) = 0;
|
| -};
|
| -
|
| -} // namespace blink
|
| -
|
| -#endif // WebVRClient_h
|
|
|