Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4295)

Unified Diff: Source/web/IndexedDBClientImpl.cpp

Issue 968163003: Rename WorkerPermissionClient and friends to WorkerContentSettingsClient. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: fix Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | Source/web/LocalFileSystemClient.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « no previous file | Source/web/LocalFileSystemClient.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698