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

Unified Diff: third_party/WebKit/Source/modules/serviceworkers/ServiceWorkerWindowClientCallback.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/Source/modules/serviceworkers/ServiceWorkerWindowClientCallback.h
diff --git a/third_party/WebKit/Source/modules/serviceworkers/ServiceWorkerWindowClientCallback.h b/third_party/WebKit/Source/modules/serviceworkers/ServiceWorkerWindowClientCallback.h
index f81fdef0c4571e2b9c63c8d57679e72a6fa7513a..e6da3578869b86d079d151ad76600b188a6a1c68 100644
--- a/third_party/WebKit/Source/modules/serviceworkers/ServiceWorkerWindowClientCallback.h
+++ b/third_party/WebKit/Source/modules/serviceworkers/ServiceWorkerWindowClientCallback.h
@@ -16,7 +16,7 @@ public:
explicit NavigateClientCallback(ScriptPromiseResolver* resolver)
: m_resolver(resolver) { }
- void onSuccess(WebPassOwnPtr<WebServiceWorkerClientInfo>) override;
+ void onSuccess(std::unique_ptr<WebServiceWorkerClientInfo>) override;
void onError(const WebServiceWorkerError&) override;
private:

Powered by Google App Engine
This is Rietveld 408576698