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

Unified Diff: third_party/WebKit/Source/web/LocalFileSystemClient.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/LocalFileSystemClient.h
diff --git a/third_party/WebKit/Source/web/LocalFileSystemClient.h b/third_party/WebKit/Source/web/LocalFileSystemClient.h
index 597d55f348f010eb71ee16fc45c00377d791d2e7..4326d2b36579231bdae04df2ffaea8192ed53776 100644
--- a/third_party/WebKit/Source/web/LocalFileSystemClient.h
+++ b/third_party/WebKit/Source/web/LocalFileSystemClient.h
@@ -33,17 +33,18 @@
#include "modules/filesystem/FileSystemClient.h"
#include "wtf/Forward.h"
+#include <memory>
namespace blink {
class LocalFileSystemClient final : public FileSystemClient {
public:
- static PassOwnPtr<FileSystemClient> create();
+ static std::unique_ptr<FileSystemClient> create();
~LocalFileSystemClient() override;
bool requestFileSystemAccessSync(ExecutionContext*) override;
- void requestFileSystemAccessAsync(ExecutionContext*, PassOwnPtr<ContentSettingCallbacks>) override;
+ void requestFileSystemAccessAsync(ExecutionContext*, std::unique_ptr<ContentSettingCallbacks>) override;
private:
LocalFileSystemClient();
« no previous file with comments | « third_party/WebKit/Source/web/LinkHighlightImplTest.cpp ('k') | third_party/WebKit/Source/web/LocalFileSystemClient.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698