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 dc41d441c8a7d6917aa3cb5efe7e21a0bfb356d8..63fd7b053178d1879335d5390780fd8b87fe25ff 100644 |
--- a/content/browser/indexed_db/indexed_db_browsertest.cc |
+++ b/content/browser/indexed_db/indexed_db_browsertest.cc |
@@ -431,4 +431,16 @@ IN_PROC_BROWSER_TEST_F(IndexedDBBrowserTest, ForceCloseEventTest) { |
EXPECT_EQ(expected_title16, title_watcher.WaitAndGetTitle()); |
} |
+class IndexedDBBrowserTestSingleProcess : public IndexedDBBrowserTest { |
+ public: |
+ virtual void SetUpCommandLine(CommandLine* command_line) OVERRIDE { |
+ command_line->AppendSwitch(switches::kSingleProcess); |
+ } |
+}; |
+ |
+IN_PROC_BROWSER_TEST_F(IndexedDBBrowserTestSingleProcess, |
+ RenderThreadShutdownTest) { |
+ SimpleTest(GetTestUrl("indexeddb", "shutdown_with_requests.html")); |
+} |
+ |
} // namespace content |