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

Unified Diff: chrome/browser/ui/webui/cookies_tree_model_util.h

Issue 2496653002: Part 2 of base::IDMap refactor to eliminate IDMapOwnPointer/IDMapExternalPointer modes (Closed)
Patch Set: typedefs => using statements, update comments in base/id_map.h Created 4 years 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/webui/cookies_tree_model_util.h
diff --git a/chrome/browser/ui/webui/cookies_tree_model_util.h b/chrome/browser/ui/webui/cookies_tree_model_util.h
index 39e16de784764ba354c8327eebad3cf13a5ca1fc..7cc6b3bc96a318666027eec748259dddcf7d066b 100644
--- a/chrome/browser/ui/webui/cookies_tree_model_util.h
+++ b/chrome/browser/ui/webui/cookies_tree_model_util.h
@@ -55,8 +55,8 @@ class CookiesTreeModelUtil {
const base::string16& title);
private:
- typedef IDMap<const CookieTreeNode> CookiesTreeNodeIdMap;
- typedef std::map<const CookieTreeNode*, int32_t> CookieTreeNodeMap;
+ using CookiesTreeNodeIdMap = IDMap<const CookieTreeNode*>;
+ using CookieTreeNodeMap = std::map<const CookieTreeNode*, int32_t>;
// Populate given |dict| with cookie tree node properties. |id_map| maps
// a CookieTreeNode to an ID and creates a new ID if |node| is not in the
« no previous file with comments | « chrome/browser/ui/tab_contents/core_tab_helper.h ('k') | chrome/browser/ui/webui/options/certificate_manager_handler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698