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

Unified Diff: chrome/browser/ui/cocoa/location_bar/location_bar_view_mac.mm

Issue 2721553004: Remove auto raw pointer deduction from non-linux specific code. (Closed)
Patch Set: Created 3 years, 10 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/cocoa/location_bar/location_bar_view_mac.mm
diff --git a/chrome/browser/ui/cocoa/location_bar/location_bar_view_mac.mm b/chrome/browser/ui/cocoa/location_bar/location_bar_view_mac.mm
index 47a358be231ceadd61628f07bf9d3d51cb37f441..e8947810f068ef35fed87b93da772c1c8fe2dc38 100644
--- a/chrome/browser/ui/cocoa/location_bar/location_bar_view_mac.mm
+++ b/chrome/browser/ui/cocoa/location_bar/location_bar_view_mac.mm
@@ -782,7 +782,7 @@ void LocationBarViewMac::RefreshPageActionDecorations() {
if (PageActionsDiffer(new_page_actions)) {
DeletePageActionDecorations();
- for (const auto new_page_action : new_page_actions) {
+ for (auto* new_page_action : new_page_actions) {
page_action_decorations_.push_back(base::MakeUnique<PageActionDecoration>(
this, browser_, new_page_action));
}

Powered by Google App Engine
This is Rietveld 408576698