| Index: chrome/browser/ui/confirm_bubble.h
|
| diff --git a/chrome/browser/ui/confirm_bubble.h b/chrome/browser/ui/confirm_bubble.h
|
| index 415c026f1f6538e66707d12394653fccab94179e..975f2ec034e96367fd61a20079959ee6093380d4 100644
|
| --- a/chrome/browser/ui/confirm_bubble.h
|
| +++ b/chrome/browser/ui/confirm_bubble.h
|
| @@ -5,6 +5,7 @@
|
| #ifndef CHROME_BROWSER_UI_CONFIRM_BUBBLE_H_
|
| #define CHROME_BROWSER_UI_CONFIRM_BUBBLE_H_
|
|
|
| +#include "base/memory/scoped_ptr.h"
|
| #include "ui/gfx/native_widget_types.h"
|
|
|
| class ConfirmBubbleModel;
|
| @@ -21,7 +22,7 @@ namespace chrome {
|
| void ShowConfirmBubble(gfx::NativeWindow window,
|
| gfx::NativeView anchor_view,
|
| const gfx::Point& origin,
|
| - ConfirmBubbleModel* model);
|
| + scoped_ptr<ConfirmBubbleModel> model);
|
|
|
| } // namespace chrome
|
|
|
|
|