| Index: content/browser/background_sync/background_sync_registration.h
|
| diff --git a/content/browser/background_sync/background_sync_registration.h b/content/browser/background_sync/background_sync_registration.h
|
| index bcfe375d875390ed2618f4ec6647253652238dfe..d51edaf75aa924bb753317038a0861ea191d003b 100644
|
| --- a/content/browser/background_sync/background_sync_registration.h
|
| +++ b/content/browser/background_sync/background_sync_registration.h
|
| @@ -27,8 +27,11 @@ class CONTENT_EXPORT BackgroundSyncRegistration {
|
|
|
| static const RegistrationId kInitialId;
|
|
|
| - BackgroundSyncRegistration();
|
| - ~BackgroundSyncRegistration();
|
| + BackgroundSyncRegistration() = default;
|
| + BackgroundSyncRegistration(const BackgroundSyncRegistration& other) = default;
|
| + BackgroundSyncRegistration& operator=(
|
| + const BackgroundSyncRegistration& other) = default;
|
| + ~BackgroundSyncRegistration() = default;
|
|
|
| bool Equals(const BackgroundSyncRegistration& other) const;
|
| bool IsValid() const;
|
| @@ -57,9 +60,6 @@ class CONTENT_EXPORT BackgroundSyncRegistration {
|
| BackgroundSyncState sync_state_ = BackgroundSyncState::PENDING;
|
| int num_attempts_ = 0;
|
| base::Time delay_until_;
|
| -
|
| -
|
| - DISALLOW_COPY_AND_ASSIGN(BackgroundSyncRegistration);
|
| };
|
|
|
| } // namespace content
|
|
|