diff options
Diffstat (limited to 'chrome/renderer/automation')
-rw-r--r-- | chrome/renderer/automation/dom_automation_controller.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/renderer/automation/dom_automation_controller.cc b/chrome/renderer/automation/dom_automation_controller.cc index a1cef66..3b7ac43 100644 --- a/chrome/renderer/automation/dom_automation_controller.cc +++ b/chrome/renderer/automation/dom_automation_controller.cc @@ -44,7 +44,7 @@ void DomAutomationController::Send(const CppArgumentList& args, // writer is lenient, and (b) on the receiving side we wrap the JSON string // in square brackets, converting it to an array, then parsing it and // grabbing the 0th element to get the value out. - switch(args[0].type) { + switch (args[0].type) { case NPVariantType_String: { value.reset(Value::CreateStringValue(args[0].ToString())); break; |