summaryrefslogtreecommitdiffstats
path: root/content/child/service_worker
diff options
context:
space:
mode:
Diffstat (limited to 'content/child/service_worker')
-rw-r--r--content/child/service_worker/service_worker_dispatcher.cc2
-rw-r--r--content/child/service_worker/service_worker_dispatcher.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/content/child/service_worker/service_worker_dispatcher.cc b/content/child/service_worker/service_worker_dispatcher.cc
index f5103fb..28c4928 100644
--- a/content/child/service_worker/service_worker_dispatcher.cc
+++ b/content/child/service_worker/service_worker_dispatcher.cc
@@ -133,7 +133,7 @@ void ServiceWorkerDispatcher::OnRegistrationError(
int32 thread_id,
int32 request_id,
WebServiceWorkerError::ErrorType error_type,
- const string16& message) {
+ const base::string16& message) {
WebServiceWorkerProvider::WebServiceWorkerCallbacks* callbacks =
pending_callbacks_.Lookup(request_id);
DCHECK(callbacks);
diff --git a/content/child/service_worker/service_worker_dispatcher.h b/content/child/service_worker/service_worker_dispatcher.h
index 51a1e21..ef2796b 100644
--- a/content/child/service_worker/service_worker_dispatcher.h
+++ b/content/child/service_worker/service_worker_dispatcher.h
@@ -65,7 +65,7 @@ class ServiceWorkerDispatcher : public webkit_glue::WorkerTaskRunner::Observer {
void OnRegistrationError(int32 thread_id,
int32 request_id,
blink::WebServiceWorkerError::ErrorType error_type,
- const string16& message);
+ const base::string16& message);
IDMap<blink::WebServiceWorkerProvider::WebServiceWorkerCallbacks,
IDMapOwnPointer> pending_callbacks_;