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

Unified Diff: chrome/browser/ui/views/extensions/extension_popup.cc

Issue 2737523002: MacViews: Fix compilation. (Closed)
Patch Set: Created 3 years, 9 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/views/extensions/extension_popup.cc
diff --git a/chrome/browser/ui/views/extensions/extension_popup.cc b/chrome/browser/ui/views/extensions/extension_popup.cc
index 9df37121ab4841037e4afd15bb4b6cc996e32627..1f82be2f05849a71aafb1ef282279cd2cbb74342 100644
--- a/chrome/browser/ui/views/extensions/extension_popup.cc
+++ b/chrome/browser/ui/views/extensions/extension_popup.cc
@@ -47,7 +47,8 @@ ExtensionPopup* ExtensionPopup::Create(extensions::ExtensionViewHost* host,
views::View* anchor_view,
views::BubbleBorder::Arrow arrow,
ShowAction show_action) {
- auto popup = new ExtensionPopup(host, anchor_view, arrow, show_action);
+ ExtensionPopup* popup =
+ new ExtensionPopup(host, anchor_view, arrow, show_action);
tapted 2017/03/06 22:05:19 This doesn't follow the patterns established in h
snake 2017/03/07 11:45:03 Done.
views::BubbleDialogDelegateView::CreateBubble(popup);
return popup;
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698