diff options
Diffstat (limited to 'chrome_frame/test/chrome_frame_test_utils.cc')
-rw-r--r-- | chrome_frame/test/chrome_frame_test_utils.cc | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/chrome_frame/test/chrome_frame_test_utils.cc b/chrome_frame/test/chrome_frame_test_utils.cc index 62be84e..5ae558b 100644 --- a/chrome_frame/test/chrome_frame_test_utils.cc +++ b/chrome_frame/test/chrome_frame_test_utils.cc @@ -891,18 +891,4 @@ FilePath GetProfilePathForIE() { return profile_path; } -void DelaySendExtendedKeysEnter(TimedMsgLoop* loop, int delay, char c, - int repeat, simulate_input::Modifier mod) { - const unsigned int kInterval = 25; - unsigned int next_delay = delay; - for (int i = 0; i < repeat; i++) { - loop->PostDelayedTask(FROM_HERE, NewRunnableFunction( - simulate_input::SendExtendedKey, c, mod), next_delay); - next_delay += kInterval; - } - - loop->PostDelayedTask(FROM_HERE, NewRunnableFunction( - simulate_input::SendCharA, VK_RETURN, simulate_input::NONE), next_delay); -} - } // namespace chrome_frame_test |