RESOLVED FIXED Bug 156916
Modern IDB: Rework the ownership/RefCounting model of IDBConnectionToServer and IDBConnectionProxy
https://bugs.webkit.org/show_bug.cgi?id=156916
Summary Modern IDB: Rework the ownership/RefCounting model of IDBConnectionToServer a...
Brady Eidson
Reported 2016-04-22 10:18:05 PDT
Modern IDB: Rework the ownership/RefCounting model of IDBConnectionToServer and IDBConnectionProxy The ConnectionToServer should own its own ConnectionProxy, and ref()'ing the proxy should simply ref() the connection itself.
Attachments
Patch v1 (8.46 KB, patch)
2016-04-22 10:20 PDT, Brady Eidson
thorton: review+
Brady Eidson
Comment 1 2016-04-22 10:20:56 PDT
Created attachment 277070 [details] Patch v1
Tim Horton
Comment 2 2016-04-22 10:28:46 PDT
Comment on attachment 277070 [details] Patch v1 View in context: https://bugs.webkit.org/attachment.cgi?id=277070&action=review > Source/WebCore/Modules/indexeddb/client/IDBConnectionToServer.cpp:51 > + m_proxy = std::make_unique<IDBConnectionProxy>(*this); Can't you do this in the initializer list? I feel like e.g. WebPageProxy does.
Brady Eidson
Comment 3 2016-04-22 10:29:45 PDT
(In reply to comment #2) > Comment on attachment 277070 [details] > Patch v1 > > View in context: > https://bugs.webkit.org/attachment.cgi?id=277070&action=review > > > Source/WebCore/Modules/indexeddb/client/IDBConnectionToServer.cpp:51 > > + m_proxy = std::make_unique<IDBConnectionProxy>(*this); > > Can't you do this in the initializer list? I feel like e.g. WebPageProxy > does. Yah.
Brady Eidson
Comment 4 2016-04-22 11:04:41 PDT
Build breakage was due to missing an exported header from WebCore. Fixed. Also, had to reorder one clause in WK2 to make the identifier available at the time the connection is created.
Brady Eidson
Comment 5 2016-04-22 11:06:10 PDT
Note You need to log in before you can comment on or make changes to this bug.