summaryrefslogtreecommitdiffstats
path: root/content/browser/service_worker
diff options
context:
space:
mode:
authorabarth@chromium.org <abarth@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-11-07 06:50:46 +0000
committerabarth@chromium.org <abarth@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-11-07 06:50:46 +0000
commit180ef24f1fd1b1ff309fc35f250336890f702f28 (patch)
treede5918896ed9780e5cf6098be329060a58f3702e /content/browser/service_worker
parent8d7dd7ade794c71be49c7a954c4d4b4ca1ab6c01 (diff)
downloadchromium_src-180ef24f1fd1b1ff309fc35f250336890f702f28.zip
chromium_src-180ef24f1fd1b1ff309fc35f250336890f702f28.tar.gz
chromium_src-180ef24f1fd1b1ff309fc35f250336890f702f28.tar.bz2
Rename WebKit namespace to blink (part 3)
This CL updates all references to the WebKit namespace in content. TBR=darin@chromium.org BUG=295096 Review URL: https://codereview.chromium.org/63253002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@233513 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/browser/service_worker')
-rw-r--r--content/browser/service_worker/service_worker_dispatcher_host.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/content/browser/service_worker/service_worker_dispatcher_host.cc b/content/browser/service_worker/service_worker_dispatcher_host.cc
index b93f8a9..98e4d7a 100644
--- a/content/browser/service_worker/service_worker_dispatcher_host.cc
+++ b/content/browser/service_worker/service_worker_dispatcher_host.cc
@@ -11,7 +11,7 @@
#include "third_party/WebKit/public/platform/WebServiceWorkerError.h"
#include "url/gurl.h"
-using WebKit::WebServiceWorkerError;
+using blink::WebServiceWorkerError;
namespace content {
@@ -60,7 +60,7 @@ void ServiceWorkerDispatcherHost::OnRegisterServiceWorker(
Send(new ServiceWorkerMsg_ServiceWorkerRegistrationError(
thread_id,
request_id,
- WebKit::WebServiceWorkerError::DisabledError,
+ blink::WebServiceWorkerError::DisabledError,
ASCIIToUTF16("ServiceWorker is disabled")));
return;
}
@@ -72,7 +72,7 @@ void ServiceWorkerDispatcherHost::OnRegisterServiceWorker(
Send(new ServiceWorkerMsg_ServiceWorkerRegistrationError(
thread_id,
request_id,
- WebKit::WebServiceWorkerError::SecurityError,
+ blink::WebServiceWorkerError::SecurityError,
ASCIIToUTF16(kDomainMismatchErrorMessage)));
return;
}