| Index: chrome/browser/ui/extensions/icon_with_badge_image_source.cc
|
| diff --git a/chrome/browser/ui/extensions/icon_with_badge_image_source.cc b/chrome/browser/ui/extensions/icon_with_badge_image_source.cc
|
| index 6984b3dc7129165f8e552c77bc726f7f9a571c46..014d9f77c2eac17d3857caa3349a67f3f17faf21 100644
|
| --- a/chrome/browser/ui/extensions/icon_with_badge_image_source.cc
|
| +++ b/chrome/browser/ui/extensions/icon_with_badge_image_source.cc
|
| @@ -6,6 +6,7 @@
|
|
|
| #include <algorithm>
|
| #include <cmath>
|
| +#include <utility>
|
|
|
| #include "base/logging.h"
|
| #include "base/strings/utf_string_conversions.h"
|
| @@ -109,7 +110,7 @@ void IconWithBadgeImageSource::SetIcon(const gfx::Image& icon) {
|
| }
|
|
|
| void IconWithBadgeImageSource::SetBadge(scoped_ptr<Badge> badge) {
|
| - badge_ = badge.Pass();
|
| + badge_ = std::move(badge);
|
| }
|
|
|
| void IconWithBadgeImageSource::Draw(gfx::Canvas* canvas) {
|
|
|