diff options
-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 805ef6e..ba06b28 100644 --- a/chrome/renderer/automation/dom_automation_controller.cc +++ b/chrome/renderer/automation/dom_automation_controller.cc @@ -41,7 +41,7 @@ void DomAutomationController::send(const CppArgumentList& args, // grabbing the 0th element to get the value out. switch(args[0].type) { case NPVariantType_String: { - value = Value::CreateStringValue(UTF8ToWide(args[0].ToString())); + value = Value::CreateStringValue(args[0].ToString()); break; } case NPVariantType_Bool: { |