| Index: content/browser/indexed_db/indexed_db_active_blob_registry_unittest.cc
|
| diff --git a/content/browser/indexed_db/indexed_db_active_blob_registry_unittest.cc b/content/browser/indexed_db/indexed_db_active_blob_registry_unittest.cc
|
| index 986a464cdf426a28d9e6f2bb29de591335f32088..7193b90541bb6f605aa264ea0b616db80a1837c1 100644
|
| --- a/content/browser/indexed_db/indexed_db_active_blob_registry_unittest.cc
|
| +++ b/content/browser/indexed_db/indexed_db_active_blob_registry_unittest.cc
|
| @@ -20,7 +20,7 @@ class RegistryTestMockFactory : public MockIndexedDBFactory {
|
| RegistryTestMockFactory() : duplicate_calls_(false) {}
|
|
|
| virtual void ReportOutstandingBlobs(const GURL& origin_url,
|
| - bool blobs_outstanding) OVERRIDE {
|
| + bool blobs_outstanding) override {
|
| if (blobs_outstanding) {
|
| if (origins_.count(origin_url)) {
|
| duplicate_calls_ = true;
|
| @@ -63,7 +63,7 @@ class MockIDBBackingStore : public IndexedDBFakeBackingStore {
|
| : IndexedDBFakeBackingStore(factory, task_runner),
|
| duplicate_calls_(false) {}
|
|
|
| - virtual void ReportBlobUnused(int64 database_id, int64 blob_key) OVERRIDE {
|
| + virtual void ReportBlobUnused(int64 database_id, int64 blob_key) override {
|
| unused_blobs_.insert(std::make_pair(database_id, blob_key));
|
| }
|
|
|
|
|