| Index: third_party/WebKit/Source/modules/cachestorage/InspectorCacheStorageAgent.cpp
|
| diff --git a/third_party/WebKit/Source/modules/cachestorage/InspectorCacheStorageAgent.cpp b/third_party/WebKit/Source/modules/cachestorage/InspectorCacheStorageAgent.cpp
|
| index e5a42303ece3cc90bba7cb6642b33fd4746e7c7e..0935f858e01706cbee542159bdfb1206a039b4bc 100644
|
| --- a/third_party/WebKit/Source/modules/cachestorage/InspectorCacheStorageAgent.cpp
|
| +++ b/third_party/WebKit/Source/modules/cachestorage/InspectorCacheStorageAgent.cpp
|
| @@ -416,8 +416,7 @@ void InspectorCacheStorageAgent::requestCacheNames(ErrorString* errorString, con
|
| RefPtr<SecurityOrigin> secOrigin = SecurityOrigin::createFromString(securityOrigin);
|
|
|
| // Cache Storage API is restricted to trustworthy origins.
|
| - String ignoredMessage;
|
| - if (!secOrigin->isPotentiallyTrustworthy(ignoredMessage)) {
|
| + if (!secOrigin->isPotentiallyTrustworthy()) {
|
| // Don't treat this as an error, just don't attempt to open and enumerate the caches.
|
| callback->sendSuccess(Array<TypeBuilder::CacheStorage::Cache>::create());
|
| return;
|
|
|