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

Unified Diff: Source/modules/gamepad/WebKitGamepadList.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/GamepadList.cpp ('k') | Source/modules/gamepad/WebKitGamepadList.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/gamepad/WebKitGamepadList.h
diff --git a/Source/modules/gamepad/WebKitGamepadList.h b/Source/modules/gamepad/WebKitGamepadList.h
index ef4330b039340cdea7e18c1b8e5c544816eea8e3..257adbbe6e5b6d51fb9251664da0abfa834b70f7 100644
--- a/Source/modules/gamepad/WebKitGamepadList.h
+++ b/Source/modules/gamepad/WebKitGamepadList.h
@@ -12,13 +12,12 @@
namespace blink {
-class WebKitGamepadList FINAL : public GarbageCollectedFinalized<WebKitGamepadList>, public ScriptWrappable {
+class WebKitGamepadList FINAL : public GarbageCollected<WebKitGamepadList>, public ScriptWrappable {
public:
static WebKitGamepadList* create()
{
return new WebKitGamepadList;
}
- ~WebKitGamepadList();
void set(unsigned index, WebKitGamepad*);
WebKitGamepad* item(unsigned index);
« no previous file with comments | « Source/modules/gamepad/GamepadList.cpp ('k') | Source/modules/gamepad/WebKitGamepadList.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698