| OLD | NEW |
| 1 // Copyright (c) 2010 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 |
| 11 // functional testing. | 11 // functional testing. |
| (...skipping 233 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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() { | 249 static int action_timeout_ms() { |
| 250 return TestTimeouts::action_timeout_ms(); | 250 return TestTimeouts::action_timeout_ms(); |
| 251 } | 251 } |
| 252 static int action_max_timeout_ms() { | 252 static int action_max_timeout_ms() { |
| 253 return TestTimeouts::action_max_timeout_ms(); | 253 return TestTimeouts::action_max_timeout_ms(); |
| 254 } | 254 } |
| 255 static int test_timeout_ms() { | |
| 256 return TestTimeouts::huge_test_timeout_ms(); | |
| 257 } | |
| 258 | 255 |
| 259 // Fetch the state which determines whether the profile will be cleared on | 256 // Fetch the state which determines whether the profile will be cleared on |
| 260 // next startup. | 257 // next startup. |
| 261 bool get_clear_profile() const { | 258 bool get_clear_profile() const { |
| 262 return clear_profile_; | 259 return clear_profile_; |
| 263 } | 260 } |
| 264 // Sets clear_profile_. Should be called before launching browser to have | 261 // Sets clear_profile_. Should be called before launching browser to have |
| 265 // any effect. | 262 // any effect. |
| 266 void set_clear_profile(bool clear_profile) { | 263 void set_clear_profile(bool clear_profile) { |
| 267 clear_profile_ = clear_profile; | 264 clear_profile_ = clear_profile; |
| (...skipping 243 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 511 #ifdef UNIT_TEST | 508 #ifdef UNIT_TEST |
| 512 std::ostream& operator<<(std::ostream& out, const std::wstring& wstr); | 509 std::ostream& operator<<(std::ostream& out, const std::wstring& wstr); |
| 513 | 510 |
| 514 template<typename T> | 511 template<typename T> |
| 515 std::ostream& operator<<(std::ostream& out, const ::scoped_ptr<T>& ptr) { | 512 std::ostream& operator<<(std::ostream& out, const ::scoped_ptr<T>& ptr) { |
| 516 return out << ptr.get(); | 513 return out << ptr.get(); |
| 517 } | 514 } |
| 518 #endif // UNIT_TEST | 515 #endif // UNIT_TEST |
| 519 | 516 |
| 520 #endif // CHROME_TEST_UI_UI_TEST_H_ | 517 #endif // CHROME_TEST_UI_UI_TEST_H_ |
| OLD | NEW |