summaryrefslogtreecommitdiffstats
path: root/components/bookmarks/browser/bookmark_model_unittest.cc
diff options
context:
space:
mode:
Diffstat (limited to 'components/bookmarks/browser/bookmark_model_unittest.cc')
-rw-r--r--components/bookmarks/browser/bookmark_model_unittest.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/components/bookmarks/browser/bookmark_model_unittest.cc b/components/bookmarks/browser/bookmark_model_unittest.cc
index dee1d94..d9e724a 100644
--- a/components/bookmarks/browser/bookmark_model_unittest.cc
+++ b/components/bookmarks/browser/bookmark_model_unittest.cc
@@ -6,9 +6,9 @@
#include <stddef.h>
#include <stdint.h>
-
#include <set>
#include <string>
+#include <utility>
#include "base/base_paths.h"
#include "base/command_line.h"
@@ -426,7 +426,7 @@ class BookmarkModelTest : public testing::Test,
BookmarkPermanentNode* extra_node = new BookmarkPermanentNode(100);
BookmarkPermanentNodeList extra_nodes;
extra_nodes.push_back(extra_node);
- client_.SetExtraNodesToLoad(extra_nodes.Pass());
+ client_.SetExtraNodesToLoad(std::move(extra_nodes));
model_->RemoveObserver(this);
model_ = client_.CreateModel();