2015-05-12 12:22:30 +00:00
|
|
|
// Copyright (c) 2015 GitHub, Inc.
|
|
|
|
// Use of this source code is governed by the MIT license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2019-06-19 20:46:59 +00:00
|
|
|
#include "shell/browser/atom_quota_permission_context.h"
|
2015-05-12 12:22:30 +00:00
|
|
|
|
2019-06-19 21:23:04 +00:00
|
|
|
namespace electron {
|
2015-05-12 12:22:30 +00:00
|
|
|
|
2018-04-18 01:55:30 +00:00
|
|
|
AtomQuotaPermissionContext::AtomQuotaPermissionContext() {}
|
2015-05-12 12:22:30 +00:00
|
|
|
|
2018-04-18 01:55:30 +00:00
|
|
|
AtomQuotaPermissionContext::~AtomQuotaPermissionContext() {}
|
2015-05-12 12:22:30 +00:00
|
|
|
|
|
|
|
void AtomQuotaPermissionContext::RequestQuotaPermission(
|
|
|
|
const content::StorageQuotaParams& params,
|
|
|
|
int render_process_id,
|
|
|
|
const PermissionCallback& callback) {
|
|
|
|
callback.Run(response::QUOTA_PERMISSION_RESPONSE_ALLOW);
|
|
|
|
}
|
|
|
|
|
2019-06-19 21:23:04 +00:00
|
|
|
} // namespace electron
|