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

Side by Side Diff: base/test/test_timeouts.h

Issue 1544113002: Switch to standard integer types in base/test/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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 unified diff | Download patch
« no previous file with comments | « base/test/test_support_android.cc ('k') | base/test/test_timeouts.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef BASE_TEST_TEST_TIMEOUTS_H_ 5 #ifndef BASE_TEST_TEST_TIMEOUTS_H_
6 #define BASE_TEST_TEST_TIMEOUTS_H_ 6 #define BASE_TEST_TEST_TIMEOUTS_H_
7 7
8 #include "base/basictypes.h"
9 #include "base/logging.h" 8 #include "base/logging.h"
9 #include "base/macros.h"
10 #include "base/time/time.h" 10 #include "base/time/time.h"
11 11
12 // Returns common timeouts to use in tests. Makes it possible to adjust 12 // Returns common timeouts to use in tests. Makes it possible to adjust
13 // the timeouts for different environments (like Valgrind). 13 // the timeouts for different environments (like Valgrind).
14 class TestTimeouts { 14 class TestTimeouts {
15 public: 15 public:
16 // Initializes the timeouts. Non thread-safe. Should be called exactly once 16 // Initializes the timeouts. Non thread-safe. Should be called exactly once
17 // by the test suite. 17 // by the test suite.
18 static void Initialize(); 18 static void Initialize();
19 19
(...skipping 30 matching lines...) Expand all
50 50
51 static int tiny_timeout_ms_; 51 static int tiny_timeout_ms_;
52 static int action_timeout_ms_; 52 static int action_timeout_ms_;
53 static int action_max_timeout_ms_; 53 static int action_max_timeout_ms_;
54 static int test_launcher_timeout_ms_; 54 static int test_launcher_timeout_ms_;
55 55
56 DISALLOW_IMPLICIT_CONSTRUCTORS(TestTimeouts); 56 DISALLOW_IMPLICIT_CONSTRUCTORS(TestTimeouts);
57 }; 57 };
58 58
59 #endif // BASE_TEST_TEST_TIMEOUTS_H_ 59 #endif // BASE_TEST_TEST_TIMEOUTS_H_
OLDNEW
« no previous file with comments | « base/test/test_support_android.cc ('k') | base/test/test_timeouts.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698