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

Unified Diff: third_party/WebKit/Source/web/StorageClientImpl.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/web/StorageClientImpl.h
diff --git a/third_party/WebKit/Source/web/StorageClientImpl.h b/third_party/WebKit/Source/web/StorageClientImpl.h
index 019b1d37c64101ccc43d38ccf0a2235469665a45..d8de1386fbe077eaeb74b3ea41a8386110f0857e 100644
--- a/third_party/WebKit/Source/web/StorageClientImpl.h
+++ b/third_party/WebKit/Source/web/StorageClientImpl.h
@@ -6,6 +6,7 @@
#define StorageClientImpl_h
#include "modules/storage/StorageClient.h"
+#include <memory>
namespace blink {
@@ -15,7 +16,7 @@ class StorageClientImpl : public StorageClient {
public:
explicit StorageClientImpl(WebViewImpl*);
- PassOwnPtr<StorageNamespace> createSessionStorageNamespace() override;
+ std::unique_ptr<StorageNamespace> createSessionStorageNamespace() override;
bool canAccessStorage(LocalFrame*, StorageType) const override;
private:
« no previous file with comments | « third_party/WebKit/Source/web/SpeechRecognitionClientProxy.cpp ('k') | third_party/WebKit/Source/web/StorageClientImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698