diff options
Diffstat (limited to 'content/browser/quota_dispatcher_host.cc')
-rw-r--r-- | content/browser/quota_dispatcher_host.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/content/browser/quota_dispatcher_host.cc b/content/browser/quota_dispatcher_host.cc index ce78362..2ea8a5e 100644 --- a/content/browser/quota_dispatcher_host.cc +++ b/content/browser/quota_dispatcher_host.cc @@ -68,7 +68,7 @@ class QuotaDispatcherHost::QueryUsageAndQuotaDispatcher int request_id) : RequestDispatcher(dispatcher_host, request_id), weak_factory_(this) {} - virtual ~QueryUsageAndQuotaDispatcher() {} + ~QueryUsageAndQuotaDispatcher() override {} void QueryStorageUsageAndQuota(const GURL& origin, StorageType type) { quota_manager()->GetUsageAndQuotaForWebApps( @@ -112,7 +112,7 @@ class QuotaDispatcherHost::RequestQuotaDispatcher // TODO(nhiroki): The backend should accept uint64 values. requested_quota_ = base::saturated_cast<int64>(params_.requested_size); } - virtual ~RequestQuotaDispatcher() {} + ~RequestQuotaDispatcher() override {} void Start() { DCHECK(dispatcher_host()); |