Home
last modified time | relevance | path

Searched refs:m_securityEnabled (Results 1 – 2 of 2) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
DDatabaseAuthorizer.cpp42 : m_securityEnabled(false) in DatabaseAuthorizer()
339 return m_securityEnabled ? SQLAuthDeny : SQLAuthAllow; in allowTransaction()
344 if (m_permissions & NoAccessMask && m_securityEnabled) in allowRead()
362 return m_securityEnabled ? SQLAuthDeny : SQLAuthAllow; in allowPragma()
367 return m_securityEnabled ? SQLAuthDeny : SQLAuthAllow; in allowAttach()
372 return m_securityEnabled ? SQLAuthDeny : SQLAuthAllow; in allowDetach()
377 if (m_securityEnabled && !m_whitelistedFunctions.contains(functionName)) in allowFunction()
385 m_securityEnabled = false; in disable()
390 m_securityEnabled = true; in enable()
395 return !(m_securityEnabled && (m_permissions & ReadOnlyMask || m_permissions & NoAccessMask)); in allowWrite()
[all …]
DDatabaseAuthorizer.h114 bool m_securityEnabled : 1; variable