 Chromium Code Reviews
 Chromium Code Reviews Issue 6630001:
  Allow webdriver users to choose between sending the key events when...  (Closed) 
  Base URL: http://src.chromium.org/svn/trunk/src/
    
  
    Issue 6630001:
  Allow webdriver users to choose between sending the key events when...  (Closed) 
  Base URL: http://src.chromium.org/svn/trunk/src/| Index: chrome/test/webdriver/automation.h | 
| =================================================================== | 
| --- chrome/test/webdriver/automation.h (revision 77600) | 
| +++ chrome/test/webdriver/automation.h (working copy) | 
| @@ -55,7 +55,10 @@ | 
| // Sends a key event to the current browser. Waits until the key has | 
| // been processed by the web page. | 
| - void SendWebKeyEvent(int tab_id, const WebKeyEvent& key_event, bool* success); | 
| + void SendWebKeyEvent(int tab_id, | 
| 
kkania
2011/03/10 17:00:47
I would prefer if you create a separate function f
 
timothe faudot
2011/03/11 03:32:08
Done.
 | 
| + const WebKeyEvent& key_event, | 
| + bool use_native_events, | 
| + bool* success); | 
| void NavigateToURL(int tab_id, const std::string& url, bool* success); | 
| void GoForward(int tab_id, bool* success); |