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

Unified Diff: chrome/browser/ui/confirm_bubble.h

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/confirm_bubble.h
diff --git a/chrome/browser/ui/confirm_bubble.h b/chrome/browser/ui/confirm_bubble.h
index 975f2ec034e96367fd61a20079959ee6093380d4..2969209a21c4efd0786a79d7286cbb79a33ba0e1 100644
--- a/chrome/browser/ui/confirm_bubble.h
+++ b/chrome/browser/ui/confirm_bubble.h
@@ -5,7 +5,8 @@
#ifndef CHROME_BROWSER_UI_CONFIRM_BUBBLE_H_
#define CHROME_BROWSER_UI_CONFIRM_BUBBLE_H_
-#include "base/memory/scoped_ptr.h"
+#include <memory>
+
#include "ui/gfx/native_widget_types.h"
class ConfirmBubbleModel;
@@ -22,7 +23,7 @@ namespace chrome {
void ShowConfirmBubble(gfx::NativeWindow window,
gfx::NativeView anchor_view,
const gfx::Point& origin,
- scoped_ptr<ConfirmBubbleModel> model);
+ std::unique_ptr<ConfirmBubbleModel> model);
} // namespace chrome

Powered by Google App Engine
This is Rietveld 408576698