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

Unified Diff: chrome/browser/service_process/service_process_control.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/service_process/service_process_control.h
diff --git a/chrome/browser/service_process/service_process_control.h b/chrome/browser/service_process/service_process_control.h
index 9fc7e019cc9e02e2cbb095277b92aa838abd0a29..c55491d85bf405814857feccc5dc867f411cfa86 100644
--- a/chrome/browser/service_process/service_process_control.h
+++ b/chrome/browser/service_process/service_process_control.h
@@ -67,12 +67,12 @@ class ServiceProcessControl : public IPC::Sender,
SERVICE_EVENT_MAX,
};
- typedef IDMap<ServiceProcessControl>::iterator iterator;
- typedef std::queue<IPC::Message> MessageQueue;
- typedef base::Callback<void(const cloud_print::CloudPrintProxyInfo&)>
- CloudPrintProxyInfoCallback;
- typedef base::Callback<void(const std::vector<std::string>&)>
- PrintersCallback;
+ using iterator = IDMap<ServiceProcessControl*>::iterator;
+ using MessageQueue = std::queue<IPC::Message>;
+ using CloudPrintProxyInfoCallback =
+ base::Callback<void(const cloud_print::CloudPrintProxyInfo&)>;
+ using PrintersCallback =
+ base::Callback<void(const std::vector<std::string>&)>;
// Returns the singleton instance of this class.
static ServiceProcessControl* GetInstance();
« no previous file with comments | « chrome/browser/permissions/permission_manager.h ('k') | chrome/browser/ui/blocked_content/popup_blocker_tab_helper.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698