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

Unified Diff: third_party/WebKit/Source/modules/indexeddb/IndexedDBClient.h

Issue 2136913002: GarbageCollectedFinalized<> must be the left-most class in IndexedDBClient (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/modules/indexeddb/IndexedDBClient.h
diff --git a/third_party/WebKit/Source/modules/indexeddb/IndexedDBClient.h b/third_party/WebKit/Source/modules/indexeddb/IndexedDBClient.h
index 560726b4d79d4dd6d5de774375faab104d13d1af..3c65ee99fb418677ef61efa3186bf3d90d7ad957 100644
--- a/third_party/WebKit/Source/modules/indexeddb/IndexedDBClient.h
+++ b/third_party/WebKit/Source/modules/indexeddb/IndexedDBClient.h
@@ -39,7 +39,7 @@ class ExecutionContext;
class LocalFrame;
class WorkerClients;
-class MODULES_EXPORT IndexedDBClient : public Supplement<LocalFrame>, public Supplement<WorkerClients>, public GarbageCollectedFinalized<IndexedDBClient> {
+class MODULES_EXPORT IndexedDBClient : public GarbageCollectedFinalized<IndexedDBClient>, public Supplement<LocalFrame>, public Supplement<WorkerClients> {
USING_GARBAGE_COLLECTED_MIXIN(IndexedDBClient);
WTF_MAKE_NONCOPYABLE(IndexedDBClient);
public:
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698