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

Unified Diff: content/browser/background_sync/background_sync_service_impl.h

Issue 1874893002: Convert //content/browser from scoped_ptr to std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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: content/browser/background_sync/background_sync_service_impl.h
diff --git a/content/browser/background_sync/background_sync_service_impl.h b/content/browser/background_sync/background_sync_service_impl.h
index 1851b90579a1b347a4221c2cdd8d9bc0e6a15e27..c058b268b610393fe9df6cf8b39ff590218d8131 100644
--- a/content/browser/background_sync/background_sync_service_impl.h
+++ b/content/browser/background_sync/background_sync_service_impl.h
@@ -40,11 +40,11 @@ class CONTENT_EXPORT BackgroundSyncServiceImpl
void OnRegisterResult(const RegisterCallback& callback,
BackgroundSyncStatus status,
- scoped_ptr<BackgroundSyncRegistration> result);
+ std::unique_ptr<BackgroundSyncRegistration> result);
void OnGetRegistrationsResult(
const GetRegistrationsCallback& callback,
BackgroundSyncStatus status,
- scoped_ptr<ScopedVector<BackgroundSyncRegistration>> result);
+ std::unique_ptr<ScopedVector<BackgroundSyncRegistration>> result);
// Called when an error is detected on binding_.
void OnConnectionError();

Powered by Google App Engine
This is Rietveld 408576698