summaryrefslogtreecommitdiffstats
path: root/content/browser/background_sync/background_sync_registration.cc
diff options
context:
space:
mode:
authorjkarlin <jkarlin@chromium.org>2016-03-15 13:41:38 -0700
committerCommit bot <commit-bot@chromium.org>2016-03-15 20:43:06 +0000
commit6b0615b5f2dd5744a9e606ec88a9062bca934d56 (patch)
tree31e6c57b79809879ac15758fa7692a765772be7a /content/browser/background_sync/background_sync_registration.cc
parent35aa85bd42c46d31c7019ce28c0471cfe7cae70f (diff)
downloadchromium_src-6b0615b5f2dd5744a9e606ec88a9062bca934d56.zip
chromium_src-6b0615b5f2dd5744a9e606ec88a9062bca934d56.tar.gz
chromium_src-6b0615b5f2dd5744a9e606ec88a9062bca934d56.tar.bz2
[BackgroundSync] Remove BackgroundSyncRegistrationHandle
Since "registration.done" is no longer part of the spec, the BackgroundSyncManager no longer needs to refcount its registrations. This CL removes the internal reference counting and the handles that were provided to clients. BUG=583328 Review URL: https://codereview.chromium.org/1763123002 Cr-Commit-Position: refs/heads/master@{#381303}
Diffstat (limited to 'content/browser/background_sync/background_sync_registration.cc')
-rw-r--r--content/browser/background_sync/background_sync_registration.cc3
1 files changed, 0 insertions, 3 deletions
diff --git a/content/browser/background_sync/background_sync_registration.cc b/content/browser/background_sync/background_sync_registration.cc
index b9b42dd..003fa2c 100644
--- a/content/browser/background_sync/background_sync_registration.cc
+++ b/content/browser/background_sync/background_sync_registration.cc
@@ -18,9 +18,6 @@ const BackgroundSyncRegistration::RegistrationId
const BackgroundSyncRegistration::RegistrationId
BackgroundSyncRegistration::kInitialId = 0;
-BackgroundSyncRegistration::BackgroundSyncRegistration() = default;
-BackgroundSyncRegistration::~BackgroundSyncRegistration() = default;
-
bool BackgroundSyncRegistration::Equals(
const BackgroundSyncRegistration& other) const {
return options_.Equals(other.options_);