| Index: third_party/WebKit/Source/modules/serviceworkers/ServiceWorkerRegistration.cpp
|
| diff --git a/third_party/WebKit/Source/modules/serviceworkers/ServiceWorkerRegistration.cpp b/third_party/WebKit/Source/modules/serviceworkers/ServiceWorkerRegistration.cpp
|
| index 3cff55f706795b9b43df1da330a707b37fd7ab61..603b1d0ffe9ee5b1e36e43dd45c1736c0eb3e382 100644
|
| --- a/third_party/WebKit/Source/modules/serviceworkers/ServiceWorkerRegistration.cpp
|
| +++ b/third_party/WebKit/Source/modules/serviceworkers/ServiceWorkerRegistration.cpp
|
| @@ -88,6 +88,10 @@ String ServiceWorkerRegistration::scope() const {
|
| return m_handle->registration()->scope().string();
|
| }
|
|
|
| +bool ServiceWorkerRegistration::useCache() const {
|
| + return m_handle->registration()->useCache();
|
| +}
|
| +
|
| ScriptPromise ServiceWorkerRegistration::update(ScriptState* scriptState) {
|
| ServiceWorkerContainerClient* client =
|
| ServiceWorkerContainerClient::from(getExecutionContext());
|
|
|