| // Copyright 2023 The Cobalt Authors. All Rights Reserved. |
| // |
| // Licensed under the Apache License, Version 2.0 (the "License"); |
| // you may not use this file except in compliance with the License. |
| // You may obtain a copy of the License at |
| // |
| // http://www.apache.org/licenses/LICENSE-2.0 |
| // |
| // Unless required by applicable law or agreed to in writing, software |
| // distributed under the License is distributed on an "AS IS" BASIS, |
| // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| // See the License for the specific language governing permissions and |
| // limitations under the License. |
| |
| #include "cobalt/worker/service_worker_consts.h" |
| |
| namespace cobalt { |
| namespace worker { |
| const char ServiceWorkerConsts::kServiceWorkerRegisterBadMIMEError[] = |
| "Service Worker Register failed: The script has an unsupported MIME type " |
| "('%s')."; |
| |
| const char ServiceWorkerConsts::kServiceWorkerRegisterNoMIMEError[] = |
| "Service Worker Register failed: The script does not have a MIME type."; |
| |
| const char |
| ServiceWorkerConsts::kServiceWorkerRegisterScriptOriginNotSameError[] = |
| "Service Worker Register failed: Script URL ('%s') and referrer ('%s') " |
| "origin are not the same."; |
| |
| const char |
| ServiceWorkerConsts::kServiceWorkerRegisterScopeOriginNotSameError[] = |
| "Service Worker Register failed: Scope URL ('%s') and referrer ('%s') " |
| "origin are not the same."; |
| |
| const char ServiceWorkerConsts::kServiceWorkerRegisterBadScopeError[] = |
| "Service Worker Register failed: Scope ('%s') is not allowed."; |
| |
| const char |
| ServiceWorkerConsts::kServiceWorkerUnregisterScopeOriginNotSameError[] = |
| "Service Worker Unregister failed: Scope origin does not match."; |
| |
| const char ServiceWorkerConsts::kServiceWorkerAllowed[] = |
| "Service-Worker-Allowed"; |
| |
| const char ServiceWorkerConsts::kSettingsJson[] = |
| "service_worker_settings.json"; |
| |
| const char* const ServiceWorkerConsts::kJavaScriptMimeTypes[16] = { |
| "application/ecmascript", |
| "application/javascript", |
| "application/x-ecmascript", |
| "application/x-javascript", |
| "text/ecmascript", |
| "text/javascript", |
| "text/javascript1.0", |
| "text/javascript1.1", |
| "text/javascript1.2", |
| "text/javascript1.3", |
| "text/javascript1.4", |
| "text/javascript1.5", |
| "text/jscript", |
| "text/livescript", |
| "text/x-ecmascript", |
| "text/x-javascript"}; |
| } // namespace worker |
| } // namespace cobalt |