/external/chromium_org/third_party/WebKit/Source/web/ |
D | IDBFactoryBackendProxy.cpp | 52 bool IDBFactoryBackendProxy::allowIndexedDB(ExecutionContext* context, const String& name) in allowIndexedDB() function in blink::IDBFactoryBackendProxy 61 return webFrame->permissionClient()->allowIndexedDB(webFrame, name, origin); in allowIndexedDB() 64 …return !webView->permissionClient() || webView->permissionClient()->allowIndexedDB(webFrame, name,… in allowIndexedDB() 68 return WorkerPermissionClient::from(workerGlobalScope)->allowIndexedDB(name); in allowIndexedDB()
|
D | WorkerPermissionClient.cpp | 66 bool WorkerPermissionClient::allowIndexedDB(const WebString& name) in allowIndexedDB() function in blink::WorkerPermissionClient 70 return m_proxy->allowIndexedDB(name); in allowIndexedDB()
|
D | IDBFactoryBackendProxy.h | 46 virtual bool allowIndexedDB(WebCore::ExecutionContext*, const String& name);
|
D | WorkerPermissionClient.h | 55 bool allowIndexedDB(const WebString& name);
|
/external/chromium_org/third_party/WebKit/Source/modules/indexeddb/ |
D | IDBFactory.cpp | 87 if (!m_permissionClient->allowIndexedDB(context, "Database Listing")) { in getDatabaseNames() 125 if (!m_permissionClient->allowIndexedDB(context, name)) { in openInternal() 157 if (!m_permissionClient->allowIndexedDB(context, name)) { in deleteDatabase()
|
D | IDBFactoryBackendInterface.h | 45 virtual bool allowIndexedDB(ExecutionContext*, const String& name) = 0;
|
/external/chromium_org/third_party/WebKit/public/web/ |
D | WebWorkerPermissionClientProxy.h | 56 virtual bool allowIndexedDB(const WebString& name) in allowIndexedDB() function
|
D | WebPermissionClient.h | 56 …virtual bool allowIndexedDB(WebFrame*, const WebString& name, const WebSecurityOrigin&) { return t… in allowIndexedDB() function
|
/external/chromium_org/content/worker/ |
D | shared_worker_permission_client_proxy.h | 34 virtual bool allowIndexedDB(const blink::WebString& name);
|
D | shared_worker_permission_client_proxy.cc | 50 bool SharedWorkerPermissionClientProxy::allowIndexedDB( in allowIndexedDB() function in content::SharedWorkerPermissionClientProxy
|
D | websharedworkerclient_proxy.h | 53 virtual bool allowIndexedDB(const blink::WebString&);
|
D | websharedworkerclient_proxy.cc | 101 bool WebSharedWorkerClientProxy::allowIndexedDB(const blink::WebString& name) { in allowIndexedDB() function in content::WebSharedWorkerClientProxy
|
/external/chromium_org/chrome/renderer/ |
D | worker_permission_client_proxy.h | 39 virtual bool allowIndexedDB(const blink::WebString& name);
|
D | worker_permission_client_proxy.cc | 54 bool WorkerPermissionClientProxy::allowIndexedDB( in allowIndexedDB() function in WorkerPermissionClientProxy
|
D | content_settings_observer.h | 60 virtual bool allowIndexedDB(blink::WebFrame* frame,
|
D | content_settings_observer.cc | 283 bool ContentSettingsObserver::allowIndexedDB(WebFrame* frame, in allowIndexedDB() function in ContentSettingsObserver
|