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

Unified Diff: base/test/test_timeouts.h

Issue 5756004: Separate BufferedDataSource and BufferedResourceLoader into two files. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: address comments + removed media_resource_loader_bridge_factory + added new timeout to test_timeouts Created 10 years 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: base/test/test_timeouts.h
diff --git a/base/test/test_timeouts.h b/base/test/test_timeouts.h
index d49ca2c7864e82353d7c9472312a215aa291db56..0467f63cb8b5fca4c956e934275f3338291921da 100644
--- a/base/test/test_timeouts.h
+++ b/base/test/test_timeouts.h
@@ -15,6 +15,9 @@ class TestTimeouts {
// by the test suite.
static void Initialize();
+ // Timeout for very short wait times, such and resource loading.
Paweł Hajdan Jr. 2010/12/13 18:54:32 nit: "such and" -> typo? Please don't mention res
annacc 2010/12/13 20:14:21 Done.
+ static int short_timeout_ms() { return short_timeout_ms_; }
Paweł Hajdan Jr. 2010/12/13 18:54:32 nit: Rename to tiny_timeout_ms.
annacc 2010/12/13 20:14:21 Done.
+
// Timeout to wait for something to happen. If you are not sure
// which timeout to use, this is the one you want.
static int action_timeout_ms() { return action_timeout_ms_; }
@@ -52,6 +55,7 @@ class TestTimeouts {
private:
static bool initialized_;
+ static int short_timeout_ms_;
static int action_timeout_ms_;
static int action_max_timeout_ms_;
static int large_test_timeout_ms_;

Powered by Google App Engine
This is Rietveld 408576698