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

Unified Diff: chrome/browser/download/download_browsertest.cc

Issue 9968090: Added download error descriptions to tooltips for Mac & Linux. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed GCC compile issue. Created 8 years, 9 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/download/download_browsertest.cc
diff --git a/chrome/browser/download/download_browsertest.cc b/chrome/browser/download/download_browsertest.cc
index ad1dcdac0c697302b547ae60dc6881600c8e8dee..4ff3a5e3e9f035c5e8e3d4b69ee7fc2dedf1c0b8 100644
--- a/chrome/browser/download/download_browsertest.cc
+++ b/chrome/browser/download/download_browsertest.cc
@@ -790,6 +790,14 @@ class DownloadTest : public InProcessBrowserTest {
}
}
}
+
+ MessageLoop::current()->PostDelayedTask(
sky 2012/04/04 16:55:34 Don't post tasks of arbitrary length. It makes for
ahendrickson 2012/04/04 17:49:32 Oh, sorry, I intended to remove this. It was only
+ FROM_HERE,
+ base::Bind(&MessageLoop::Quit,
+ base::Unretained(MessageLoop::current())),
+ 5000);
+
+ ui_test_utils::RunMessageLoop();
}
// Attempts to download a set of files, based on information in the
« no previous file with comments | « no previous file | chrome/browser/download/download_item_model.h » ('j') | chrome/browser/download/download_item_model.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698