| Index: chrome/browser/ui/webui/chromeos/login/login_ui_helpers.cc
|
| diff --git a/chrome/browser/ui/webui/chromeos/login/login_ui_helpers.cc b/chrome/browser/ui/webui/chromeos/login/login_ui_helpers.cc
|
| index 6ce49576b9de21cee84b8be9765c705bf3bbbf9d..980414f83c8a75a205fe17e55409f3acfd580c0b 100644
|
| --- a/chrome/browser/ui/webui/chromeos/login/login_ui_helpers.cc
|
| +++ b/chrome/browser/ui/webui/chromeos/login/login_ui_helpers.cc
|
| @@ -30,14 +30,4 @@ std::string HTMLOperationsInterface::GetFullHTML(
|
| localized_strings);
|
| }
|
|
|
| -RefCountedBytes* HTMLOperationsInterface::CreateHTMLBytes(
|
| - std::string full_html) {
|
| - RefCountedBytes* html_bytes = new RefCountedBytes();
|
| - html_bytes->data.resize(full_html.size());
|
| - std::copy(full_html.begin(),
|
| - full_html.end(),
|
| - html_bytes->data.begin());
|
| - return html_bytes;
|
| -}
|
| -
|
| } // namespace chromeos
|
|
|