| Index: third_party/WebKit/Source/modules/indexeddb/IDBDatabase.cpp
|
| diff --git a/third_party/WebKit/Source/modules/indexeddb/IDBDatabase.cpp b/third_party/WebKit/Source/modules/indexeddb/IDBDatabase.cpp
|
| index 14108129337932cc7ac51e90f0592bb431ca0318..48c1da54bb531ecc982f945e06f2d9291196e67f 100644
|
| --- a/third_party/WebKit/Source/modules/indexeddb/IDBDatabase.cpp
|
| +++ b/third_party/WebKit/Source/modules/indexeddb/IDBDatabase.cpp
|
| @@ -343,7 +343,7 @@ void IDBDatabase::closeConnection()
|
|
|
| if (m_backend) {
|
| m_backend->close();
|
| - m_backend.clear();
|
| + m_backend.reset();
|
| }
|
|
|
| if (m_contextStopped || !getExecutionContext())
|
| @@ -432,7 +432,7 @@ void IDBDatabase::stop()
|
| // round trip to the back-end to abort.
|
| if (m_backend) {
|
| m_backend->close();
|
| - m_backend.clear();
|
| + m_backend.reset();
|
| }
|
| }
|
|
|
|
|