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

Unified Diff: chrome/browser/renderer_host/file_system_accessor_unittest.cc

Issue 306032: Simplify threading in browser thread by making only ChromeThread deal with di... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: a few more simplifications Created 11 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
Index: chrome/browser/renderer_host/file_system_accessor_unittest.cc
===================================================================
--- chrome/browser/renderer_host/file_system_accessor_unittest.cc (revision 30037)
+++ chrome/browser/renderer_host/file_system_accessor_unittest.cc (working copy)
@@ -18,7 +18,6 @@
// Create FILE thread which is used to do file access.
file_thread_.reset(new ChromeThread(ChromeThread::FILE));
- EXPECT_TRUE(ChromeThread::GetMessageLoop(ChromeThread::FILE) == NULL);
// Start FILE thread and verify FILE message loop exists.
file_thread_->Start();
@@ -27,7 +26,6 @@
virtual void TearDown() {
file_thread_->Stop();
- EXPECT_TRUE(ChromeThread::GetMessageLoop(ChromeThread::FILE) == NULL);
}
void TestGetFileSize(const FilePath& path,

Powered by Google App Engine
This is Rietveld 408576698