| Index: chrome/test/automation/automation_json_requests.cc | 
| =================================================================== | 
| --- chrome/test/automation/automation_json_requests.cc	(revision 77771) | 
| +++ chrome/test/automation/automation_json_requests.cc	(working copy) | 
| @@ -389,6 +389,22 @@ | 
| return SendAutomationJSONRequest(sender, dict, &reply_dict); | 
| } | 
|  | 
| +bool SendNativeKeyEventJSONRequest( | 
| +    AutomationMessageSender* sender, | 
| +    int browser_index, | 
| +    int tab_index, | 
| +    ui::KeyboardCode keycode, | 
| +    int modifiers) { | 
| +  DictionaryValue dict; | 
| +  dict.SetString("command", "SendOSLevelKeyEvent"); | 
| +  dict.SetInteger("windex", browser_index); | 
| +  dict.SetInteger("tab_index", tab_index); | 
| +  dict.SetInteger("nativeKeyCode", keycode); | 
| +  dict.SetInteger("modifiers", modifiers); | 
| +  DictionaryValue reply_dict; | 
| +  return SendAutomationJSONRequest(sender, dict, &reply_dict); | 
| +} | 
| + | 
| bool SendWaitForAllTabsToStopLoadingJSONRequest( | 
| AutomationMessageSender* sender) { | 
| DictionaryValue dict; | 
|  |