| Index: chrome/browser/ui/webui/settings/font_handler.cc
|
| diff --git a/chrome/browser/ui/webui/settings/font_handler.cc b/chrome/browser/ui/webui/settings/font_handler.cc
|
| index 4aee4102be3e61b224c6f91eca61f9e6ca927d5e..ff34281ece1f804fd03098fa996b0caf5938ea43 100644
|
| --- a/chrome/browser/ui/webui/settings/font_handler.cc
|
| +++ b/chrome/browser/ui/webui/settings/font_handler.cc
|
| @@ -5,6 +5,7 @@
|
| #include "chrome/browser/ui/webui/settings/font_handler.h"
|
|
|
| #include <stddef.h>
|
| +#include <utility>
|
|
|
| #include "base/bind_helpers.h"
|
| #include "base/i18n/rtl.h"
|
| @@ -80,7 +81,7 @@ void FontHandler::FontListHasLoaded(scoped_ptr<base::ListValue> list) {
|
| // Add empty value to indicate a separator item.
|
| option->AppendString(std::string());
|
| }
|
| - encoding_list.Append(option.Pass());
|
| + encoding_list.Append(std::move(option));
|
| }
|
|
|
| web_ui()->CallJavascriptFunction("Settings.setFontsData", *list,
|
|
|