Index: content/browser/indexed_db/indexed_db_browsertest.cc |
diff --git a/content/browser/indexed_db/indexed_db_browsertest.cc b/content/browser/indexed_db/indexed_db_browsertest.cc |
index a70b52ec59a86f5e82a9af2c61909205217d7ec1..922d5bea0fdefc9c60ae41ad358710d221e02f87 100644 |
--- a/content/browser/indexed_db/indexed_db_browsertest.cc |
+++ b/content/browser/indexed_db/indexed_db_browsertest.cc |
@@ -246,14 +246,7 @@ IN_PROC_BROWSER_TEST_F(IndexedDBBrowserTest, CallbackAccounting) { |
SimpleTest(GetTestUrl("indexeddb", "callback_accounting.html")); |
} |
- |
-// https://crbug.com/616155 |
-#if defined(ANDROID) |
-#define MAYBE_GetAllMaxMessageSize DISABLED_GetAllMaxMessageSize |
-#else |
-#define MAYBE_GetAllMaxMessageSize GetAllMaxMessageSize |
-#endif |
-IN_PROC_BROWSER_TEST_F(IndexedDBBrowserTest, MAYBE_GetAllMaxMessageSize) { |
+IN_PROC_BROWSER_TEST_F(IndexedDBBrowserTest, GetAllMaxMessageSize) { |
SimpleTest(GetTestUrl("indexeddb", "getall_max_message_size.html")); |
} |
@@ -437,9 +430,7 @@ IN_PROC_BROWSER_TEST_F(IndexedDBBrowserTest, LevelDBLogFileTest) { |
EXPECT_GT(size, 0); |
} |
-// Disabled due to flakes on Android bots. See crbug.com/616100. |
-IN_PROC_BROWSER_TEST_F(IndexedDBBrowserTest, |
- DISABLED_CanDeleteWhenOverQuotaTest) { |
+IN_PROC_BROWSER_TEST_F(IndexedDBBrowserTest, CanDeleteWhenOverQuotaTest) { |
SimpleTest(GetTestUrl("indexeddb", "fill_up_5k.html")); |
int64_t size = RequestDiskUsage(); |
const int kQuotaKilobytes = 2; |
@@ -740,14 +731,8 @@ INSTANTIATE_TEST_CASE_P(IndexedDBBrowserTestInstantiation, |
"iterate", |
"failTransactionCommit", |
"clearObjectStore")); |
-// https://crbug.com/616155 |
-#if defined(ANDROID) |
-#define MAYBE_DeleteCompactsBackingStore DISABLED_DeleteCompactsBackingStore |
-#else |
-#define MAYBE_DeleteCompactsBackingStore DeleteCompactsBackingStore |
-#endif |
-IN_PROC_BROWSER_TEST_F(IndexedDBBrowserTest, |
- MAYBE_DeleteCompactsBackingStore) { |
+ |
+IN_PROC_BROWSER_TEST_F(IndexedDBBrowserTest, DeleteCompactsBackingStore) { |
const GURL test_url = GetTestUrl("indexeddb", "delete_compact.html"); |
SimpleTest(GURL(test_url.spec() + "#fill")); |
int64_t after_filling = RequestDiskUsage(); |