Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(8710)

Unified Diff: chrome/browser/ui/views/location_bar/bubble_icon_view.cc

Issue 1865213004: Convert //chrome/browser/ui from scoped_ptr to std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/views/location_bar/bubble_icon_view.cc
diff --git a/chrome/browser/ui/views/location_bar/bubble_icon_view.cc b/chrome/browser/ui/views/location_bar/bubble_icon_view.cc
index 24939d18485929dabe4b733f9556a0f65296b502..8278ca941c1bf533357e9226fdf340ab2ac1d0bd 100644
--- a/chrome/browser/ui/views/location_bar/bubble_icon_view.cc
+++ b/chrome/browser/ui/views/location_bar/bubble_icon_view.cc
@@ -129,7 +129,8 @@ void BubbleIconView::RemoveInkDropLayer(ui::Layer* ink_drop_layer) {
image_->SetPaintToLayer(false);
}
-scoped_ptr<views::InkDropHover> BubbleIconView::CreateInkDropHover() const {
+std::unique_ptr<views::InkDropHover> BubbleIconView::CreateInkDropHover()
+ const {
// BubbleIconView views don't show hover effect.
return nullptr;
}

Powered by Google App Engine
This is Rietveld 408576698