Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1650)

Unified Diff: chrome/browser/chrome_quota_permission_context.h

Issue 648653003: Standardize usage of virtual/override/final in chrome/browser/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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_
« no previous file with comments | « chrome/browser/chrome_net_benchmarking_message_filter.h ('k') | chrome/browser/chrome_quota_permission_context.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698