Index: chrome/browser/chromeos/extensions/input_method_api.cc |
diff --git a/chrome/browser/chromeos/extensions/input_method_api.cc b/chrome/browser/chromeos/extensions/input_method_api.cc |
index 52a54c9f766e82d82921c9c923babbfa2c3905e1..ce70b3642b55a32b673897124fcff817d1e3551c 100644 |
--- a/chrome/browser/chromeos/extensions/input_method_api.cc |
+++ b/chrome/browser/chromeos/extensions/input_method_api.cc |
@@ -5,9 +5,9 @@ |
#include "chrome/browser/chromeos/extensions/input_method_api.h" |
#include <stddef.h> |
- |
#include <set> |
#include <string> |
+#include <utility> |
#include "base/command_line.h" |
#include "base/lazy_instance.h" |
@@ -170,7 +170,7 @@ ExtensionFunction::ResponseAction GetEncryptSyncEnabledFunction::Run() { |
return RespondNow(Error("Sync service is not ready for current profile.")); |
scoped_ptr<base::Value> ret(new base::FundamentalValue( |
profile_sync_service->IsEncryptEverythingEnabled())); |
- return RespondNow(OneArgument(ret.Pass())); |
+ return RespondNow(OneArgument(std::move(ret))); |
#endif |
} |