summaryrefslogtreecommitdiffstats
path: root/content/child
diff options
context:
space:
mode:
authornhiroki <nhiroki@chromium.org>2015-10-06 05:41:39 -0700
committerCommit bot <commit-bot@chromium.org>2015-10-06 12:42:24 +0000
commit442c072152f062ef7d5b279f3a8a58a8fddebab4 (patch)
tree9b6a6bab251cedbdc61a06c9abcd0654a6888479 /content/child
parent011ad4bb05558061cb4c8caf0204b552c3f9d77d (diff)
downloadchromium_src-442c072152f062ef7d5b279f3a8a58a8fddebab4.zip
chromium_src-442c072152f062ef7d5b279f3a8a58a8fddebab4.tar.gz
chromium_src-442c072152f062ef7d5b279f3a8a58a8fddebab4.tar.bz2
ServiceWorker: Remove unused provider_id from SetVersionAttributes message
|provider_id| is no longer used after https://codereview.chromium.org/1343113002 BUG=532098 Review URL: https://codereview.chromium.org/1388703002 Cr-Commit-Position: refs/heads/master@{#352588}
Diffstat (limited to 'content/child')
-rw-r--r--content/child/service_worker/service_worker_dispatcher.cc1
-rw-r--r--content/child/service_worker/service_worker_dispatcher.h1
-rw-r--r--content/child/service_worker/service_worker_message_filter.cc1
-rw-r--r--content/child/service_worker/service_worker_message_filter.h1
4 files changed, 0 insertions, 4 deletions
diff --git a/content/child/service_worker/service_worker_dispatcher.cc b/content/child/service_worker/service_worker_dispatcher.cc
index 489506d..7419a2b 100644
--- a/content/child/service_worker/service_worker_dispatcher.cc
+++ b/content/child/service_worker/service_worker_dispatcher.cc
@@ -664,7 +664,6 @@ void ServiceWorkerDispatcher::OnServiceWorkerStateChanged(
void ServiceWorkerDispatcher::OnSetVersionAttributes(
int thread_id,
- int provider_id,
int registration_handle_id,
int changed_mask,
const ServiceWorkerVersionAttributes& attrs) {
diff --git a/content/child/service_worker/service_worker_dispatcher.h b/content/child/service_worker/service_worker_dispatcher.h
index 32fc133..cbc43bf 100644
--- a/content/child/service_worker/service_worker_dispatcher.h
+++ b/content/child/service_worker/service_worker_dispatcher.h
@@ -247,7 +247,6 @@ class CONTENT_EXPORT ServiceWorkerDispatcher : public WorkerThread::Observer {
int handle_id,
blink::WebServiceWorkerState state);
void OnSetVersionAttributes(int thread_id,
- int provider_id,
int registration_handle_id,
int changed_mask,
const ServiceWorkerVersionAttributes& attributes);
diff --git a/content/child/service_worker/service_worker_message_filter.cc b/content/child/service_worker/service_worker_message_filter.cc
index 6429621..7aa24d9 100644
--- a/content/child/service_worker/service_worker_message_filter.cc
+++ b/content/child/service_worker/service_worker_message_filter.cc
@@ -90,7 +90,6 @@ void ServiceWorkerMessageFilter::OnStaleRegistered(
void ServiceWorkerMessageFilter::OnStaleSetVersionAttributes(
int thread_id,
- int provider_id,
int registration_handle_id,
int changed_mask,
const ServiceWorkerVersionAttributes& attrs) {
diff --git a/content/child/service_worker/service_worker_message_filter.h b/content/child/service_worker/service_worker_message_filter.h
index d6fdeb9..6199592 100644
--- a/content/child/service_worker/service_worker_message_filter.h
+++ b/content/child/service_worker/service_worker_message_filter.h
@@ -40,7 +40,6 @@ class CONTENT_EXPORT ServiceWorkerMessageFilter
const ServiceWorkerVersionAttributes& attrs);
void OnStaleSetVersionAttributes(
int thread_id,
- int provider_id,
int registration_handle_id,
int changed_mask,
const ServiceWorkerVersionAttributes& attrs);