Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4252)

Unified Diff: Source/modules/gamepad/GamepadList.h

Issue 367113005: Remove destructors from ScriptWrappable objects in modules/ (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebased Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/modules/gamepad/GamepadButton.cpp ('k') | Source/modules/gamepad/GamepadList.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/gamepad/GamepadList.h
diff --git a/Source/modules/gamepad/GamepadList.h b/Source/modules/gamepad/GamepadList.h
index 081714b2df5203b6a002668dc682d53e5f1e7e09..b7e02f1479df217600be00e4116fc59bbf0b45ab 100644
--- a/Source/modules/gamepad/GamepadList.h
+++ b/Source/modules/gamepad/GamepadList.h
@@ -33,13 +33,12 @@
namespace blink {
-class GamepadList FINAL : public GarbageCollectedFinalized<GamepadList>, public ScriptWrappable {
+class GamepadList FINAL : public GarbageCollected<GamepadList>, public ScriptWrappable {
public:
static GamepadList* create()
{
return new GamepadList();
}
- ~GamepadList();
void set(unsigned index, Gamepad*);
Gamepad* item(unsigned index);
« no previous file with comments | « Source/modules/gamepad/GamepadButton.cpp ('k') | Source/modules/gamepad/GamepadList.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698