Chromium Code Reviews| Index: chrome/test/pyautolib/pyautolib.h |
| =================================================================== |
| --- chrome/test/pyautolib/pyautolib.h (revision 79305) |
| +++ chrome/test/pyautolib/pyautolib.h (working copy) |
| @@ -168,6 +168,9 @@ |
| // Use -ve window_index for automation calls not targetted at a browser |
| // window. Example: Login call for chromeos. |
| std::string _SendJSONRequest(int window_index, const std::string& request); |
|
Nirnimesh
2011/03/29 20:27:28
Do we need this version anymore?
Huyen
2011/03/31 02:42:55
Removed and used one with timeout.
|
| + std::string _SendJSONRequest(int window_index, |
| + const std::string& request, |
| + int timeout); |
| // Execute javascript in a given tab, and return the response. This is |
| // a low-level method intended for use mostly by GetDOMValue(). Note that |
| @@ -202,8 +205,8 @@ |
| return TestTimeouts::action_max_timeout_ms(); |
| } |
| - int command_execution_timeout_ms() const { |
| - return TestTimeouts::command_execution_timeout_ms(); |
| + int large_test_timeout_ms() const { |
| + return TestTimeouts::large_test_timeout_ms(); |
| } |
| private: |