Index: third_party/WebKit/Source/modules/webdatabase/DatabaseTracker.h |
diff --git a/third_party/WebKit/Source/modules/webdatabase/DatabaseTracker.h b/third_party/WebKit/Source/modules/webdatabase/DatabaseTracker.h |
index 03a57a745ccf6d46513856087d7a014a8eaea857..3a8bc641a130f9f81779564ae650cbee7045ccf9 100644 |
--- a/third_party/WebKit/Source/modules/webdatabase/DatabaseTracker.h |
+++ b/third_party/WebKit/Source/modules/webdatabase/DatabaseTracker.h |
@@ -38,6 +38,7 @@ |
#include "wtf/ThreadingPrimitives.h" |
#include "wtf/text/StringHash.h" |
#include "wtf/text/WTFString.h" |
+#include <memory> |
namespace blink { |
@@ -85,7 +86,7 @@ private: |
Mutex m_openDatabaseMapGuard; |
- mutable OwnPtr<DatabaseOriginMap> m_openDatabaseMap; |
+ mutable std::unique_ptr<DatabaseOriginMap> m_openDatabaseMap; |
}; |
} // namespace blink |