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

Unified Diff: third_party/WebKit/public/platform/WebURLLoaderMockFactory.h

Issue 1865913005: Nuke WebPassOwnPtr<T> and replace it with std::unique_ptr<T>. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 8 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/public/platform/WebURLLoaderMockFactory.h
diff --git a/third_party/WebKit/public/platform/WebURLLoaderMockFactory.h b/third_party/WebKit/public/platform/WebURLLoaderMockFactory.h
index a2e6c9557279180b0a433bf3af27f0bea3b1822d..50ad556f21f3288206b0f197a1020a9ba7f6164d 100644
--- a/third_party/WebKit/public/platform/WebURLLoaderMockFactory.h
+++ b/third_party/WebKit/public/platform/WebURLLoaderMockFactory.h
@@ -7,10 +7,11 @@
#include "public/platform/WebCommon.h"
#include "public/platform/WebData.h"
-#include "public/platform/WebPassOwnPtr.h"
#include "public/platform/WebString.h"
#include "public/platform/WebURLLoaderTestDelegate.h"
+#include <memory>
+
namespace blink {
class WebURL;
@@ -19,7 +20,7 @@ struct WebURLError;
class WebURLLoaderMockFactory {
public:
- static WebPassOwnPtr<WebURLLoaderMockFactory> create();
+ static std::unique_ptr<WebURLLoaderMockFactory> create();
virtual ~WebURLLoaderMockFactory() {}
« no previous file with comments | « third_party/WebKit/public/platform/WebScheduler.h ('k') | third_party/WebKit/public/platform/WebViewScheduler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698