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

Unified Diff: third_party/WebKit/Source/modules/webdatabase/ChangeVersionWrapper.h

Issue 2050123002: Remove OwnPtr from Blink. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: First attempt to land. Created 4 years, 6 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
Index: third_party/WebKit/Source/modules/webdatabase/ChangeVersionWrapper.h
diff --git a/third_party/WebKit/Source/modules/webdatabase/ChangeVersionWrapper.h b/third_party/WebKit/Source/modules/webdatabase/ChangeVersionWrapper.h
index dbf4c2074baf798da7e354271d92970953369500..00d7b1c52d6356153b123587810beeabd5ec9b4e 100644
--- a/third_party/WebKit/Source/modules/webdatabase/ChangeVersionWrapper.h
+++ b/third_party/WebKit/Source/modules/webdatabase/ChangeVersionWrapper.h
@@ -31,6 +31,7 @@
#include "modules/webdatabase/SQLTransactionBackend.h"
#include "platform/heap/Handle.h"
#include "wtf/Forward.h"
+#include <memory>
namespace blink {
@@ -50,7 +51,7 @@ private:
String m_oldVersion;
String m_newVersion;
- OwnPtr<SQLErrorData> m_sqlError;
+ std::unique_ptr<SQLErrorData> m_sqlError;
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698