summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/core/loader/appcache/application_cache.cc
diff options
context:
space:
mode:
authorAllan Sandfeld Jensen <allan.jensen@qt.io>2019-02-13 15:05:36 +0100
committerAllan Sandfeld Jensen <allan.jensen@qt.io>2019-02-14 10:33:47 +0000
commite684a3455bcc29a6e3e66a004e352dea4e1141e7 (patch)
treed55b4003bde34d7d05f558f02cfd82b2a66a7aac /chromium/third_party/blink/renderer/core/loader/appcache/application_cache.cc
parent2b94bfe47ccb6c08047959d1c26e392919550e86 (diff)
downloadqtwebengine-chromium-e684a3455bcc29a6e3e66a004e352dea4e1141e7.tar.gz
BASELINE: Update Chromium to 72.0.3626.110 and Ninja to 1.9.0
Change-Id: Ic57220b00ecc929a893c91f5cc552f5d3e99e922 Reviewed-by: Michael BrĂ¼ning <michael.bruning@qt.io>
Diffstat (limited to 'chromium/third_party/blink/renderer/core/loader/appcache/application_cache.cc')
-rw-r--r--chromium/third_party/blink/renderer/core/loader/appcache/application_cache.cc20
1 files changed, 10 insertions, 10 deletions
diff --git a/chromium/third_party/blink/renderer/core/loader/appcache/application_cache.cc b/chromium/third_party/blink/renderer/core/loader/appcache/application_cache.cc
index f0aa3cdf1ac..9cced5e52dc 100644
--- a/chromium/third_party/blink/renderer/core/loader/appcache/application_cache.cc
+++ b/chromium/third_party/blink/renderer/core/loader/appcache/application_cache.cc
@@ -89,7 +89,7 @@ void ApplicationCache::abort() {
}
const AtomicString& ApplicationCache::InterfaceName() const {
- return EventTargetNames::ApplicationCache;
+ return event_target_names::kApplicationCache;
}
ExecutionContext* ApplicationCache::GetExecutionContext() const {
@@ -100,24 +100,24 @@ const AtomicString& ApplicationCache::ToEventType(
ApplicationCacheHost::EventID id) {
switch (id) {
case ApplicationCacheHost::kCheckingEvent:
- return EventTypeNames::checking;
+ return event_type_names::kChecking;
case ApplicationCacheHost::kErrorEvent:
- return EventTypeNames::error;
+ return event_type_names::kError;
case ApplicationCacheHost::kNoupdateEvent:
- return EventTypeNames::noupdate;
+ return event_type_names::kNoupdate;
case ApplicationCacheHost::kDownloadingEvent:
- return EventTypeNames::downloading;
+ return event_type_names::kDownloading;
case ApplicationCacheHost::kProgressEvent:
- return EventTypeNames::progress;
+ return event_type_names::kProgress;
case ApplicationCacheHost::kUpdatereadyEvent:
- return EventTypeNames::updateready;
+ return event_type_names::kUpdateready;
case ApplicationCacheHost::kCachedEvent:
- return EventTypeNames::cached;
+ return event_type_names::kCached;
case ApplicationCacheHost::kObsoleteEvent:
- return EventTypeNames::obsolete;
+ return event_type_names::kObsolete;
}
NOTREACHED();
- return EventTypeNames::error;
+ return event_type_names::kError;
}
void ApplicationCache::RecordAPIUseType() const {