| 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_;
|
|
|