| Index: chrome/browser/chrome_quota_permission_context.h
|
| diff --git a/chrome/browser/chrome_quota_permission_context.h b/chrome/browser/chrome_quota_permission_context.h
|
| index a45ac0d271d0d260439d6783cbe32693c7c6aeb3..fc558776014cea43e3f24421e0009bbde14a86b6 100644
|
| --- a/chrome/browser/chrome_quota_permission_context.h
|
| +++ b/chrome/browser/chrome_quota_permission_context.h
|
| @@ -14,17 +14,16 @@ class ChromeQuotaPermissionContext : public content::QuotaPermissionContext {
|
| ChromeQuotaPermissionContext();
|
|
|
| // The callback will be dispatched on the IO thread.
|
| - virtual void RequestQuotaPermission(
|
| - const content::StorageQuotaParams& params,
|
| - int render_process_id,
|
| - const PermissionCallback& callback) override;
|
| + void RequestQuotaPermission(const content::StorageQuotaParams& params,
|
| + int render_process_id,
|
| + const PermissionCallback& callback) override;
|
|
|
| void DispatchCallbackOnIOThread(
|
| const PermissionCallback& callback,
|
| QuotaPermissionResponse response);
|
|
|
| private:
|
| - virtual ~ChromeQuotaPermissionContext();
|
| + ~ChromeQuotaPermissionContext() override;
|
| };
|
|
|
| #endif // CHROME_BROWSER_CHROME_QUOTA_PERMISSION_CONTEXT_H_
|
|
|