| Index: chrome/browser/ui/webui/options/core_options_handler.cc
|
| diff --git a/chrome/browser/ui/webui/options/core_options_handler.cc b/chrome/browser/ui/webui/options/core_options_handler.cc
|
| index b15d2070762118f64f065837d75ed96dd027efc5..9cf0f7e6a8f3f1e5da39b0fdac630faa63bf2dad 100644
|
| --- a/chrome/browser/ui/webui/options/core_options_handler.cc
|
| +++ b/chrome/browser/ui/webui/options/core_options_handler.cc
|
| @@ -5,6 +5,7 @@
|
| #include "chrome/browser/ui/webui/options/core_options_handler.h"
|
|
|
| #include <stddef.h>
|
| +#include <utility>
|
|
|
| #include "base/bind.h"
|
| #include "base/bind_helpers.h"
|
| @@ -346,7 +347,7 @@ void CoreOptionsHandler::NotifyPrefChanged(
|
| const std::string& controlling_pref_name) {
|
| scoped_ptr<base::Value> value(
|
| CreateValueForPref(pref_name, controlling_pref_name));
|
| - DispatchPrefChangeNotification(pref_name, value.Pass());
|
| + DispatchPrefChangeNotification(pref_name, std::move(value));
|
| }
|
|
|
| void CoreOptionsHandler::DispatchPrefChangeNotification(
|
|
|