| Index: content/browser/background_sync/background_sync_manager.h
|
| diff --git a/content/browser/background_sync/background_sync_manager.h b/content/browser/background_sync/background_sync_manager.h
|
| index 7b12f6c810891276018ff97bd00569e685a245e6..5a88d1e894b82477906cf9098014f435ac3ff592 100644
|
| --- a/content/browser/background_sync/background_sync_manager.h
|
| +++ b/content/browser/background_sync/background_sync_manager.h
|
| @@ -111,7 +111,7 @@ class CONTENT_EXPORT BackgroundSyncManager
|
|
|
| void set_clock(scoped_ptr<base::Clock> clock) {
|
| DCHECK_CURRENTLY_ON(BrowserThread::IO);
|
| - clock_ = clock.Pass();
|
| + clock_ = std::move(clock);
|
| }
|
| void set_max_sync_attempts(int max_attempts) {
|
| DCHECK_CURRENTLY_ON(BrowserThread::IO);
|
|
|