| Index: chrome/browser/ui/webui/version_handler_chromeos.cc
|
| diff --git a/chrome/browser/ui/webui/version_handler_chromeos.cc b/chrome/browser/ui/webui/version_handler_chromeos.cc
|
| index f61d780d0ea5642c987af0231861a9a82fd3d8ec..676496b759d9b1f546878a03a160f1ce1b6c4b2b 100644
|
| --- a/chrome/browser/ui/webui/version_handler_chromeos.cc
|
| +++ b/chrome/browser/ui/webui/version_handler_chromeos.cc
|
| @@ -40,16 +40,16 @@ void VersionHandlerChromeOS::HandleRequestVersionInfo(
|
| }
|
|
|
| void VersionHandlerChromeOS::OnVersion(const std::string& version) {
|
| - base::StringValue arg(version);
|
| + base::Value arg(version);
|
| web_ui()->CallJavascriptFunctionUnsafe("returnOsVersion", arg);
|
| }
|
|
|
| void VersionHandlerChromeOS::OnOSFirmware(const std::string& version) {
|
| - base::StringValue arg(version);
|
| + base::Value arg(version);
|
| web_ui()->CallJavascriptFunctionUnsafe("returnOsFirmwareVersion", arg);
|
| }
|
|
|
| void VersionHandlerChromeOS::OnARCVersion(const std::string& version) {
|
| - base::StringValue arg(version);
|
| + base::Value arg(version);
|
| web_ui()->CallJavascriptFunctionUnsafe("returnARCVersion", arg);
|
| }
|
|
|