Index: Source/web/IndexedDBClientImpl.cpp |
diff --git a/Source/web/IndexedDBClientImpl.cpp b/Source/web/IndexedDBClientImpl.cpp |
index cb8f09b717234d84684ce9bb643b89a3cd814c9c..2fbc3677064287ae3d32aec35724f1f4c90dd68e 100644 |
--- a/Source/web/IndexedDBClientImpl.cpp |
+++ b/Source/web/IndexedDBClientImpl.cpp |
@@ -37,7 +37,7 @@ |
#include "public/web/WebKit.h" |
#include "public/web/WebSecurityOrigin.h" |
#include "web/WebLocalFrameImpl.h" |
-#include "web/WorkerPermissionClient.h" |
+#include "web/WorkerContentSettingsClient.h" |
namespace blink { |
@@ -59,7 +59,7 @@ bool IndexedDBClientImpl::allowIndexedDB(ExecutionContext* context, const String |
} |
WorkerGlobalScope& workerGlobalScope = *toWorkerGlobalScope(context); |
- return WorkerPermissionClient::from(workerGlobalScope)->allowIndexedDB(name); |
+ return WorkerContentSettingsClient::from(workerGlobalScope)->allowIndexedDB(name); |
} |
} // namespace blink |