summaryrefslogtreecommitdiffstats
path: root/content/browser/background_sync/background_sync_service_impl.h
diff options
context:
space:
mode:
authorjkarlin <jkarlin@chromium.org>2015-07-01 11:00:24 -0700
committerCommit bot <commit-bot@chromium.org>2015-07-01 18:00:46 +0000
commit077ae96d1f649fc591d344bc9404231057ad0939 (patch)
treeeeb7fe9c84a4a1d0b5100bd0529883219f4a69f2 /content/browser/background_sync/background_sync_service_impl.h
parent92a101b6d732b8af7f12f19459e382181586373a (diff)
downloadchromium_src-077ae96d1f649fc591d344bc9404231057ad0939.zip
chromium_src-077ae96d1f649fc591d344bc9404231057ad0939.tar.gz
chromium_src-077ae96d1f649fc591d344bc9404231057ad0939.tar.bz2
Formatting nits in BackgroundSyncServiceImpl
Review URL: https://codereview.chromium.org/1216163003 Cr-Commit-Position: refs/heads/master@{#337058}
Diffstat (limited to 'content/browser/background_sync/background_sync_service_impl.h')
-rw-r--r--content/browser/background_sync/background_sync_service_impl.h12
1 files changed, 7 insertions, 5 deletions
diff --git a/content/browser/background_sync/background_sync_service_impl.h b/content/browser/background_sync/background_sync_service_impl.h
index 932b464..a585517 100644
--- a/content/browser/background_sync/background_sync_service_impl.h
+++ b/content/browser/background_sync/background_sync_service_impl.h
@@ -5,6 +5,8 @@
#ifndef CONTENT_BROWSER_BACKGROUND_SYNC_BACKGROUND_SYNC_SERVICE_IMPL_H_
#define CONTENT_BROWSER_BACKGROUND_SYNC_BACKGROUND_SYNC_SERVICE_IMPL_H_
+#include <vector>
+
#include "base/memory/ref_counted.h"
#include "content/browser/background_sync/background_sync_manager.h"
#include "content/common/background_sync_service.mojom.h"
@@ -36,23 +38,23 @@ class CONTENT_EXPORT BackgroundSyncServiceImpl
// BackgroundSyncService methods:
void Register(content::SyncRegistrationPtr options,
- int64_t serviceWorkerRegistrationId,
+ int64_t sw_registration_id,
const RegisterCallback& callback) override;
void Unregister(BackgroundSyncPeriodicity periodicity,
int64_t id,
const mojo::String& tag,
- int64_t serviceWorkerRegistrationId,
+ int64_t sw_registration_id,
const UnregisterCallback& callback) override;
void GetRegistration(BackgroundSyncPeriodicity periodicity,
const mojo::String& tag,
- int64_t serviceWorkerRegistrationId,
+ int64_t sw_registration_id,
const GetRegistrationCallback& callback) override;
void GetRegistrations(BackgroundSyncPeriodicity periodicity,
- int64_t serviceWorkerRegistrationId,
+ int64_t sw_registration_id,
const GetRegistrationsCallback& callback) override;
void GetPermissionStatus(
BackgroundSyncPeriodicity periodicity,
- int64_t serviceWorkerRegistrationId,
+ int64_t sw_registration_id,
const GetPermissionStatusCallback& callback) override;
void OnRegisterResult(