allowDatabase      52 Source/modules/webdatabase/DatabaseClient.h     virtual bool allowDatabase(ExecutionContext*, const String& name, const String& displayName, unsigned long estimatedSize) = 0;
allowDatabase      74 Source/modules/webdatabase/DatabaseTracker.cpp     bool success = DatabaseClient::from(executionContext)->allowDatabase(executionContext, name, displayName, estimatedSize);
allowDatabase      64 Source/web/DatabaseClientImpl.cpp             return webFrame->permissionClient()->allowDatabase(webFrame, name, displayName, estimatedSize);
allowDatabase      67 Source/web/DatabaseClientImpl.cpp         return WorkerPermissionClient::from(workerGlobalScope)->allowDatabase(name, displayName, estimatedSize);
allowDatabase      45 Source/web/DatabaseClientImpl.h     virtual bool allowDatabase(WebCore::ExecutionContext*, const String& name, const String& displayName, unsigned long estimatedSize) OVERRIDE;
allowDatabase      57 Source/web/WorkerPermissionClient.cpp     return m_proxy->allowDatabase(name, displayName, estimatedSize);
allowDatabase      54 Source/web/WorkerPermissionClient.h     bool allowDatabase(const WebString& name, const WebString& displayName, unsigned long estimatedSize);
allowDatabase      47 public/web/WebPermissionClient.h     virtual bool allowDatabase(WebLocalFrame*, const WebString& name, const WebString& displayName, unsigned long estimatedSize) { return true; }
allowDatabase      49 public/web/WebWorkerPermissionClientProxy.h     virtual bool allowDatabase(const WebString& name, const WebString& displayName, unsigned long estimatedSize)