OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 CHROME_TEST_UI_UI_TEST_H_ | 5 #ifndef CHROME_TEST_UI_UI_TEST_H_ |
6 #define CHROME_TEST_UI_UI_TEST_H_ | 6 #define CHROME_TEST_UI_UI_TEST_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 // This file provides a common base for running UI unit tests, which operate | 9 // This file provides a common base for running UI unit tests, which operate |
10 // the entire browser application in a separate process for holistic | 10 // the entire browser application in a separate process for holistic |
(...skipping 228 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
239 // Return how long the shutdown took. | 239 // Return how long the shutdown took. |
240 base::TimeDelta browser_quit_time() const { | 240 base::TimeDelta browser_quit_time() const { |
241 return launcher_->browser_quit_time(); | 241 return launcher_->browser_quit_time(); |
242 } | 242 } |
243 | 243 |
244 // Compatibility timeout accessors. | 244 // Compatibility timeout accessors. |
245 // TODO(phajdan.jr): update callers and remove these. | 245 // TODO(phajdan.jr): update callers and remove these. |
246 static int command_execution_timeout_ms() { | 246 static int command_execution_timeout_ms() { |
247 return TestTimeouts::command_execution_timeout_ms(); | 247 return TestTimeouts::command_execution_timeout_ms(); |
248 } | 248 } |
249 static int action_timeout_ms() { | |
250 return TestTimeouts::action_timeout_ms(); | |
251 } | |
252 static int action_max_timeout_ms() { | 249 static int action_max_timeout_ms() { |
253 return TestTimeouts::action_max_timeout_ms(); | 250 return TestTimeouts::action_max_timeout_ms(); |
254 } | 251 } |
255 | 252 |
256 // Fetch the state which determines whether the profile will be cleared on | 253 // Fetch the state which determines whether the profile will be cleared on |
257 // next startup. | 254 // next startup. |
258 bool get_clear_profile() const { | 255 bool get_clear_profile() const { |
259 return clear_profile_; | 256 return clear_profile_; |
260 } | 257 } |
261 // Sets clear_profile_. Should be called before launching browser to have | 258 // Sets clear_profile_. Should be called before launching browser to have |
(...skipping 246 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
508 #ifdef UNIT_TEST | 505 #ifdef UNIT_TEST |
509 std::ostream& operator<<(std::ostream& out, const std::wstring& wstr); | 506 std::ostream& operator<<(std::ostream& out, const std::wstring& wstr); |
510 | 507 |
511 template<typename T> | 508 template<typename T> |
512 std::ostream& operator<<(std::ostream& out, const ::scoped_ptr<T>& ptr) { | 509 std::ostream& operator<<(std::ostream& out, const ::scoped_ptr<T>& ptr) { |
513 return out << ptr.get(); | 510 return out << ptr.get(); |
514 } | 511 } |
515 #endif // UNIT_TEST | 512 #endif // UNIT_TEST |
516 | 513 |
517 #endif // CHROME_TEST_UI_UI_TEST_H_ | 514 #endif // CHROME_TEST_UI_UI_TEST_H_ |
OLD | NEW |