| Index: third_party/WebKit/Source/modules/vr/VRHardwareUnitCollection.h
|
| diff --git a/third_party/WebKit/Source/modules/vr/VRHardwareUnitCollection.h b/third_party/WebKit/Source/modules/vr/VRHardwareUnitCollection.h
|
| deleted file mode 100644
|
| index cbdf63ffe286a63990b6fe84b37f0549ac48255a..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/Source/modules/vr/VRHardwareUnitCollection.h
|
| +++ /dev/null
|
| @@ -1,33 +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 VRHardwareUnitCollection_h
|
| -#define VRHardwareUnitCollection_h
|
| -
|
| -#include "modules/vr/VRDevice.h"
|
| -#include "modules/vr/VRHardwareUnit.h"
|
| -#include "platform/heap/Handle.h"
|
| -#include "public/platform/WebVector.h"
|
| -
|
| -namespace blink {
|
| -
|
| -struct WebVRDevice;
|
| -
|
| -class VRHardwareUnitCollection final : public GarbageCollected<VRHardwareUnitCollection> {
|
| -public:
|
| - explicit VRHardwareUnitCollection(NavigatorVRDevice*);
|
| -
|
| - VRDeviceVector updateVRHardwareUnits(const WebVector<WebVRDevice>&);
|
| - VRHardwareUnit* getHardwareUnitForIndex(unsigned index);
|
| -
|
| - DECLARE_VIRTUAL_TRACE();
|
| -
|
| -private:
|
| - Member<NavigatorVRDevice> m_navigatorVRDevice;
|
| - HeapVector<Member<VRHardwareUnit>> m_hardwareUnits;
|
| -};
|
| -
|
| -} // namespace blink
|
| -
|
| -#endif // VRHardwareUnitCollection_h
|
|
|