| Index: third_party/WebKit/public/platform/modules/background_sync/WebSyncProvider.h
|
| diff --git a/third_party/WebKit/public/platform/modules/background_sync/WebSyncProvider.h b/third_party/WebKit/public/platform/modules/background_sync/WebSyncProvider.h
|
| index 1491d3d3a596ccc5ef6415fa50c855bc0e9978b7..58f2674c753c972486d09b25b7c38185b4b87511 100644
|
| --- a/third_party/WebKit/public/platform/modules/background_sync/WebSyncProvider.h
|
| +++ b/third_party/WebKit/public/platform/modules/background_sync/WebSyncProvider.h
|
| @@ -7,16 +7,17 @@
|
|
|
| #include "public/platform/WebCallbacks.h"
|
| #include "public/platform/WebCommon.h"
|
| -#include "public/platform/WebPassOwnPtr.h"
|
| #include "public/platform/WebString.h"
|
| #include "public/platform/WebVector.h"
|
| #include "public/platform/modules/background_sync/WebSyncError.h"
|
| #include "public/platform/modules/background_sync/WebSyncRegistration.h"
|
|
|
| +#include <memory>
|
| +
|
| namespace blink {
|
|
|
| class WebServiceWorkerRegistration;
|
| -using WebSyncRegistrationCallbacks = WebCallbacks<WebPassOwnPtr<WebSyncRegistration>, const WebSyncError&>;
|
| +using WebSyncRegistrationCallbacks = WebCallbacks<std::unique_ptr<WebSyncRegistration>, const WebSyncError&>;
|
| using WebSyncGetRegistrationsCallbacks = WebCallbacks<const WebVector<WebSyncRegistration*>&, const WebSyncError&>;
|
|
|
| class WebSyncProvider {
|
|
|