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

Unified Diff: content/browser/indexed_db/indexed_db_active_blob_registry_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
« no previous file with comments | « content/browser/host_zoom_map_impl.h ('k') | content/browser/indexed_db/indexed_db_backing_store.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 7193b90541bb6f605aa264ea0b616db80a1837c1..aa412cf090883a05daf24b9e17a4aee8d8075b0a 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
@@ -19,8 +19,8 @@ class RegistryTestMockFactory : public MockIndexedDBFactory {
public:
RegistryTestMockFactory() : duplicate_calls_(false) {}
- virtual void ReportOutstandingBlobs(const GURL& origin_url,
- bool blobs_outstanding) override {
+ void ReportOutstandingBlobs(const GURL& origin_url,
+ bool blobs_outstanding) override {
if (blobs_outstanding) {
if (origins_.count(origin_url)) {
duplicate_calls_ = true;
@@ -45,7 +45,7 @@ class RegistryTestMockFactory : public MockIndexedDBFactory {
}
private:
- virtual ~RegistryTestMockFactory() {}
+ ~RegistryTestMockFactory() override {}
std::set<GURL> origins_;
bool duplicate_calls_;
@@ -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 {
+ void ReportBlobUnused(int64 database_id, int64 blob_key) override {
unused_blobs_.insert(std::make_pair(database_id, blob_key));
}
@@ -78,7 +78,7 @@ class MockIDBBackingStore : public IndexedDBFakeBackingStore {
const KeyPairSet& unused_blobs() const { return unused_blobs_; }
protected:
- virtual ~MockIDBBackingStore() {}
+ ~MockIDBBackingStore() override {}
private:
KeyPairSet unused_blobs_;
« no previous file with comments | « content/browser/host_zoom_map_impl.h ('k') | content/browser/indexed_db/indexed_db_backing_store.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698