Index: content/browser/in_process_webkit/indexed_db_browsertest.cc |
=================================================================== |
--- content/browser/in_process_webkit/indexed_db_browsertest.cc (revision 181789) |
+++ content/browser/in_process_webkit/indexed_db_browsertest.cc (working copy) |
@@ -154,7 +154,7 @@ |
class IndexedDBBrowserTestWithLowQuota : public IndexedDBBrowserTest { |
public: |
- virtual void SetUpOnMainThread() { |
+ virtual void SetUpOnMainThread() OVERRIDE { |
const int kInitialQuotaKilobytes = 5000; |
const int kTemporaryStorageQuotaMaxSize = kInitialQuotaKilobytes |
* 1024 * QuotaManager::kPerHostTemporaryPortion; |
@@ -189,7 +189,7 @@ |
class IndexedDBBrowserTestWithGCExposed : public IndexedDBBrowserTest { |
public: |
- virtual void SetUpCommandLine(CommandLine* command_line) { |
+ virtual void SetUpCommandLine(CommandLine* command_line) OVERRIDE { |
command_line->AppendSwitchASCII(switches::kJavaScriptFlags, "--expose-gc"); |
} |
}; |
@@ -223,7 +223,7 @@ |
public: |
IndexedDBBrowserTestWithPreexistingLevelDB() : disk_usage_(-1) { } |
- virtual void SetUpOnMainThread() { |
+ virtual void SetUpOnMainThread() OVERRIDE { |
scoped_refptr<IndexedDBContext> context = GetContext(); |
BrowserThread::PostTask( |
BrowserThread::WEBKIT_DEPRECATED, FROM_HERE, |
@@ -264,7 +264,7 @@ |
class IndexedDBBrowserTestWithVersion0Schema : public |
IndexedDBBrowserTestWithPreexistingLevelDB { |
- virtual std::string EnclosingLevelDBDir() { |
+ virtual std::string EnclosingLevelDBDir() OVERRIDE { |
return "migration_from_0"; |
} |
}; |
@@ -275,7 +275,7 @@ |
class IndexedDBBrowserTestWithVersion123456Schema : public |
IndexedDBBrowserTestWithPreexistingLevelDB { |
- virtual std::string EnclosingLevelDBDir() { |
+ virtual std::string EnclosingLevelDBDir() OVERRIDE { |
return "schema_version_123456"; |
} |
}; |
@@ -291,7 +291,7 @@ |
class IndexedDBBrowserTestWithVersion987654SSVData : public |
IndexedDBBrowserTestWithPreexistingLevelDB { |
- virtual std::string EnclosingLevelDBDir() { |
+ virtual std::string EnclosingLevelDBDir() OVERRIDE { |
return "ssv_version_987654"; |
} |
}; |
@@ -307,7 +307,7 @@ |
class IndexedDBBrowserTestWithCorruptLevelDB : public |
IndexedDBBrowserTestWithPreexistingLevelDB { |
- virtual std::string EnclosingLevelDBDir() { |
+ virtual std::string EnclosingLevelDBDir() OVERRIDE { |
return "corrupt_leveldb"; |
} |
}; |