diff options
author | jkarlin <jkarlin@chromium.org> | 2016-03-15 13:41:38 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-03-15 20:43:06 +0000 |
commit | 6b0615b5f2dd5744a9e606ec88a9062bca934d56 (patch) | |
tree | 31e6c57b79809879ac15758fa7692a765772be7a /content/browser/background_sync/background_sync_registration.cc | |
parent | 35aa85bd42c46d31c7019ce28c0471cfe7cae70f (diff) | |
download | chromium_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.cc | 3 |
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_); |