| Index: chrome/browser/ui/views/toolbar/browser_actions_container.cc
|
| diff --git a/chrome/browser/ui/views/toolbar/browser_actions_container.cc b/chrome/browser/ui/views/toolbar/browser_actions_container.cc
|
| index 41f3d507e280bdef134d0131c1e1036e0d146ff2..fd235129d4b4d06a242a0623f18acb4d5cc55d8a 100644
|
| --- a/chrome/browser/ui/views/toolbar/browser_actions_container.cc
|
| +++ b/chrome/browser/ui/views/toolbar/browser_actions_container.cc
|
| @@ -306,7 +306,7 @@ int BrowserActionsContainer::GetChevronWidth() const {
|
| }
|
|
|
| void BrowserActionsContainer::ShowToolbarActionBubble(
|
| - scoped_ptr<ToolbarActionsBarBubbleDelegate> controller) {
|
| + std::unique_ptr<ToolbarActionsBarBubbleDelegate> controller) {
|
| // The container shouldn't be asked to show a bubble if it's animating.
|
| DCHECK(!animating());
|
| views::View* anchor_view = nullptr;
|
| @@ -325,7 +325,7 @@ void BrowserActionsContainer::ShowToolbarActionBubble(
|
| }
|
|
|
| void BrowserActionsContainer::ShowExtensionMessageBubble(
|
| - scoped_ptr<extensions::ExtensionMessageBubbleController> controller,
|
| + std::unique_ptr<extensions::ExtensionMessageBubbleController> controller,
|
| ToolbarActionViewController* anchor_action) {
|
| // The container shouldn't be asked to show a bubble if it's animating.
|
| DCHECK(!animating());
|
|
|