Index: Source/modules/gamepad/WebKitGamepadList.h |
diff --git a/Source/modules/gamepad/WebKitGamepadList.h b/Source/modules/gamepad/WebKitGamepadList.h |
deleted file mode 100644 |
index 5a5a0244a2503ea68979577e802c4b791e96ed4f..0000000000000000000000000000000000000000 |
--- a/Source/modules/gamepad/WebKitGamepadList.h |
+++ /dev/null |
@@ -1,36 +0,0 @@ |
-// Copyright 2014 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 WebKitGamepadList_h |
-#define WebKitGamepadList_h |
- |
-#include "bindings/core/v8/ScriptWrappable.h" |
-#include "modules/gamepad/WebKitGamepad.h" |
-#include "platform/heap/Handle.h" |
-#include "public/platform/WebGamepads.h" |
- |
-namespace blink { |
- |
-class WebKitGamepadList final : public GarbageCollected<WebKitGamepadList>, public ScriptWrappable { |
- DEFINE_WRAPPERTYPEINFO(); |
-public: |
- static WebKitGamepadList* create() |
- { |
- return new WebKitGamepadList; |
- } |
- |
- void set(unsigned index, WebKitGamepad*); |
- WebKitGamepad* item(unsigned index); |
- unsigned length() const { return WebGamepads::itemsLengthCap; } |
- |
- void trace(Visitor*); |
- |
-private: |
- WebKitGamepadList(); |
- Member<WebKitGamepad> m_items[WebGamepads::itemsLengthCap]; |
-}; |
- |
-} // namespace blink |
- |
-#endif // WebKitGamepadList_h |