Index: net/extras/sqlite/sqlite_channel_id_store.cc |
diff --git a/net/extras/sqlite/sqlite_channel_id_store.cc b/net/extras/sqlite/sqlite_channel_id_store.cc |
index 50014948b0cbd0a75a082976ed9cc5cf04d72394..5b8b351b43309cc28b52f0100e904b664c3fdae1 100644 |
--- a/net/extras/sqlite/sqlite_channel_id_store.cc |
+++ b/net/extras/sqlite/sqlite_channel_id_store.cc |
@@ -5,6 +5,7 @@ |
#include "net/extras/sqlite/sqlite_channel_id_store.h" |
#include <set> |
+#include <utility> |
#include <vector> |
#include "base/bind.h" |
@@ -230,7 +231,7 @@ void SQLiteChannelIDStore::Backend::LoadInBackground( |
scoped_ptr<DefaultChannelIDStore::ChannelID> channel_id( |
new DefaultChannelIDStore::ChannelID( |
smt.ColumnString(0), // host |
- base::Time::FromInternalValue(smt.ColumnInt64(3)), key.Pass())); |
+ base::Time::FromInternalValue(smt.ColumnInt64(3)), std::move(key))); |
channel_ids->push_back(std::move(channel_id)); |
} |