summaryrefslogtreecommitdiffstats
path: root/components/favicon/core/favicon_service.cc
diff options
context:
space:
mode:
Diffstat (limited to 'components/favicon/core/favicon_service.cc')
-rw-r--r--components/favicon/core/favicon_service.cc7
1 files changed, 3 insertions, 4 deletions
diff --git a/components/favicon/core/favicon_service.cc b/components/favicon/core/favicon_service.cc
index f19e47c..698aa2f 100644
--- a/components/favicon/core/favicon_service.cc
+++ b/components/favicon/core/favicon_service.cc
@@ -5,8 +5,8 @@
#include "components/favicon/core/favicon_service.h"
#include <stddef.h>
-
#include <cmath>
+#include <utility>
#include "base/hash.h"
#include "base/single_thread_task_runner.h"
@@ -52,9 +52,8 @@ std::vector<int> GetPixelSizesForFaviconScales(int size_in_dip) {
FaviconService::FaviconService(scoped_ptr<FaviconClient> favicon_client,
history::HistoryService* history_service)
- : favicon_client_(favicon_client.Pass()),
- history_service_(history_service) {
-}
+ : favicon_client_(std::move(favicon_client)),
+ history_service_(history_service) {}
FaviconService::~FaviconService() {
}