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

Unified Diff: content/browser/in_process_webkit/indexed_db_browsertest.cc

Issue 12210030: Linux/ChromeOS Chromium style checker cleanup, content/ edition. (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: Created 7 years, 10 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/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";
}
};
« no previous file with comments | « content/browser/gpu/webgl_conformance_test.cc ('k') | content/browser/in_process_webkit/indexed_db_quota_client_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698