Upstream version 5.34.97.0
[platform/framework/web/crosswalk.git] / src / xwalk / extensions / common / xwalk_extension.cc
index b65d5ac..00c2ef4 100644 (file)
 namespace xwalk {
 namespace extensions {
 
+bool XWalkExtension::PermissionsDelegate::CheckAPIAccessControl(
+    const std::string& extension_name, const std::string& api_name) {
+  return false;
+}
+
+bool XWalkExtension::PermissionsDelegate::RegisterPermissions(
+    const std::string& extension_name, const std::string& perm_table) {
+  return false;
+}
+
 XWalkExtension::XWalkExtension() : permissions_delegate_(NULL) {}
 
 XWalkExtension::~XWalkExtension() {}