diff options
Diffstat (limited to 'content/browser')
4 files changed, 0 insertions, 9 deletions
diff --git a/content/browser/background_sync/background_sync_registration.cc b/content/browser/background_sync/background_sync_registration.cc index 427580a..29745d7 100644 --- a/content/browser/background_sync/background_sync_registration.cc +++ b/content/browser/background_sync/background_sync_registration.cc @@ -78,9 +78,6 @@ TypeConverter<content::SyncRegistrationPtr, namespace content { -// TODO(thakis): Remove this once http://crbug.com/488634 is fixed. -BackgroundSyncRegistration::BackgroundSyncRegistration() = default; - const BackgroundSyncRegistration::RegistrationId BackgroundSyncRegistration::kInvalidRegistrationId = -1; diff --git a/content/browser/background_sync/background_sync_registration.h b/content/browser/background_sync/background_sync_registration.h index 94d7648..e965329 100644 --- a/content/browser/background_sync/background_sync_registration.h +++ b/content/browser/background_sync/background_sync_registration.h @@ -19,7 +19,6 @@ class CONTENT_EXPORT BackgroundSyncRegistration { using RegistrationId = int64_t; static const RegistrationId kInitialId; - BackgroundSyncRegistration(); bool Equals(const BackgroundSyncRegistration& other) const; bool IsValid() const; diff --git a/content/browser/background_sync/background_sync_registration_options.cc b/content/browser/background_sync/background_sync_registration_options.cc index dc3d2e1..74b8bac 100644 --- a/content/browser/background_sync/background_sync_registration_options.cc +++ b/content/browser/background_sync/background_sync_registration_options.cc @@ -6,10 +6,6 @@ namespace content { -// TODO(thakis): Remove this once http://crbug.com/488634 is fixed. -BackgroundSyncRegistrationOptions::BackgroundSyncRegistrationOptions() = - default; - bool BackgroundSyncRegistrationOptions::Equals( const BackgroundSyncRegistrationOptions& other) const { return tag == other.tag && min_period == other.min_period && diff --git a/content/browser/background_sync/background_sync_registration_options.h b/content/browser/background_sync/background_sync_registration_options.h index 9dcb8d9..133c9f6 100644 --- a/content/browser/background_sync/background_sync_registration_options.h +++ b/content/browser/background_sync/background_sync_registration_options.h @@ -15,7 +15,6 @@ namespace content { // The options passed to BackgroundSyncManager::Registration. struct CONTENT_EXPORT BackgroundSyncRegistrationOptions { - BackgroundSyncRegistrationOptions(); bool Equals(const BackgroundSyncRegistrationOptions& other) const; std::string tag; |