 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/automation/automation_json_requests.h | 
| =================================================================== | 
| --- chrome/test/automation/automation_json_requests.h (revision 77771) | 
| +++ chrome/test/automation/automation_json_requests.h (working copy) | 
| @@ -190,6 +190,15 @@ | 
| int tab_index, | 
| const WebKeyEvent& key_event) WARN_UNUSED_RESULT; | 
| +// Requests to send the WebKit event for the given |WebKeyEvent| to a | 
| 
kkania
2011/03/11 16:32:13
this comment is no longer accurate
 
timothe
2011/03/21 18:02:05
Done, removed WebKit.
 | 
| +// browser window containing the specified tab. Returns true on success. | 
| +bool SendNativeKeyEventJSONRequest( | 
| + AutomationMessageSender* sender, | 
| + int browser_index, | 
| + int tab_index, | 
| + ui::KeyboardCode keycode, | 
| 
kkania
2011/03/11 16:32:13
the convention we've been using in these files is
 
timothe
2011/03/21 18:02:05
Done.
 | 
| + int modifiers) WARN_UNUSED_RESULT; | 
| + | 
| // Requests to wait for all tabs to stop loading. Returns true on success. | 
| bool SendWaitForAllTabsToStopLoadingJSONRequest( | 
| AutomationMessageSender* sender) WARN_UNUSED_RESULT; |