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

Unified Diff: third_party/WebKit/Source/platform/testing/TestingPlatformSupport.h

Issue 2831033002: Use unique_ptr for Platform::CreateURLLoader (Closed)
Patch Set: Created 3 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/Source/platform/testing/TestingPlatformSupport.h
diff --git a/third_party/WebKit/Source/platform/testing/TestingPlatformSupport.h b/third_party/WebKit/Source/platform/testing/TestingPlatformSupport.h
index 5b5d1edb2427dd5181886adc2caa9f0b83e1043a..8e057f8a5717227335041ddb57cecddd28719e66 100644
--- a/third_party/WebKit/Source/platform/testing/TestingPlatformSupport.h
+++ b/third_party/WebKit/Source/platform/testing/TestingPlatformSupport.h
@@ -113,7 +113,7 @@ class TestingPlatformSupport : public Platform {
WebFileUtilities* GetFileUtilities() override;
WebIDBFactory* IdbFactory() override;
WebURLLoaderMockFactory* GetURLLoaderMockFactory() override;
- blink::WebURLLoader* CreateURLLoader() override;
+ std::unique_ptr<blink::WebURLLoader> CreateURLLoader() override;
WebData LoadResource(const char* name) override;
WebURLError CancelledError(const WebURL&) const override;
InterfaceProvider* GetInterfaceProvider() override;

Powered by Google App Engine
This is Rietveld 408576698