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

Unified Diff: Source/modules/indexeddb/IDBKeyRange.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/indexeddb/IDBFactory.cpp ('k') | Source/modules/mediasource/VideoPlaybackQuality.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/indexeddb/IDBKeyRange.h
diff --git a/Source/modules/indexeddb/IDBKeyRange.h b/Source/modules/indexeddb/IDBKeyRange.h
index 5a310d3ea9490701589edd0de4629d32afa06441..d39a07354c5562e6ab1421125c92caa94907d802 100644
--- a/Source/modules/indexeddb/IDBKeyRange.h
+++ b/Source/modules/indexeddb/IDBKeyRange.h
@@ -34,7 +34,7 @@ namespace blink {
class ExceptionState;
-class IDBKeyRange : public GarbageCollectedFinalized<IDBKeyRange>, public ScriptWrappable {
+class IDBKeyRange FINAL : public GarbageCollected<IDBKeyRange>, public ScriptWrappable {
public:
enum LowerBoundType {
LowerBoundOpen,
@@ -52,7 +52,6 @@ public:
// Null if the script value is null or undefined, the range if it is one, otherwise tries to convert to a key and throws if it fails.
static IDBKeyRange* fromScriptValue(ExecutionContext*, const ScriptValue&, ExceptionState&);
- ~IDBKeyRange() { }
void trace(Visitor*);
// Implement the IDBKeyRange IDL
« no previous file with comments | « Source/modules/indexeddb/IDBFactory.cpp ('k') | Source/modules/mediasource/VideoPlaybackQuality.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698