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

Unified Diff: chrome/browser/ui/cocoa/view_id_util.mm

Issue 2721553004: Remove auto raw pointer deduction from non-linux specific code. (Closed)
Patch Set: rebase 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
« no previous file with comments | « chrome/browser/ui/cocoa/location_bar/location_bar_view_mac.mm ('k') | chromecast/browser/cast_web_view.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/cocoa/view_id_util.mm
diff --git a/chrome/browser/ui/cocoa/view_id_util.mm b/chrome/browser/ui/cocoa/view_id_util.mm
index f97c795388be63abb7fb9d4be7957f1b5150b392..95748cc8a7d7ce4509587401a227b4ee86b93969 100644
--- a/chrome/browser/ui/cocoa/view_id_util.mm
+++ b/chrome/browser/ui/cocoa/view_id_util.mm
@@ -21,7 +21,7 @@ namespace {
typedef std::map<NSView*, ViewID> ViewIDMap;
ViewIDMap* GetViewIDMap() {
- static auto view_id_map = new ViewIDMap();
+ static auto* view_id_map = new ViewIDMap();
return view_id_map;
}
« no previous file with comments | « chrome/browser/ui/cocoa/location_bar/location_bar_view_mac.mm ('k') | chromecast/browser/cast_web_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698