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

Unified Diff: content/browser/quota/storage_monitor_unittest.cc

Issue 667943003: Standardize usage of virtual/override/final in content/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: content/browser/quota/storage_monitor_unittest.cc
diff --git a/content/browser/quota/storage_monitor_unittest.cc b/content/browser/quota/storage_monitor_unittest.cc
index 3ddc19b26e281cb89673e08cd56c4497dcdd3ce9..10d1a874c151d4b9f044c90b2114a239ac1b383c 100644
--- a/content/browser/quota/storage_monitor_unittest.cc
+++ b/content/browser/quota/storage_monitor_unittest.cc
@@ -51,7 +51,7 @@ class MockObserver : public StorageObserver {
}
// StorageObserver implementation:
- virtual void OnStorageEvent(const StorageObserver::Event& event) override {
+ void OnStorageEvent(const StorageObserver::Event& event) override {
events_.push_back(event);
}
@@ -86,7 +86,7 @@ class UsageMockQuotaManager : public QuotaManager {
delayed_callback_.Run(callback_status_, callback_usage_, callback_quota_);
}
- virtual void GetUsageAndQuotaForWebApps(
+ void GetUsageAndQuotaForWebApps(
const GURL& origin,
StorageType type,
const GetUsageAndQuotaCallback& callback) override {
@@ -97,7 +97,7 @@ class UsageMockQuotaManager : public QuotaManager {
}
protected:
- virtual ~UsageMockQuotaManager() {}
+ ~UsageMockQuotaManager() override {}
private:
int64 callback_usage_;
« no previous file with comments | « content/browser/quota/quota_temporary_storage_evictor_unittest.cc ('k') | content/browser/quota/usage_tracker_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698