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

Unified Diff: mojo/edk/system/mapping_table.h

Issue 1154903003: "typedef Foo Bar" -> "using Bar = Foo" in //mojo/edk/.... (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years, 7 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: mojo/edk/system/mapping_table.h
diff --git a/mojo/edk/system/mapping_table.h b/mojo/edk/system/mapping_table.h
index d2812d8d2953e421856ea831cacd111083ca4ea0..ed1732d35a0a55b1c382bc61cf4c17ff2ee85314 100644
--- a/mojo/edk/system/mapping_table.h
+++ b/mojo/edk/system/mapping_table.h
@@ -49,8 +49,8 @@ class MOJO_SYSTEM_IMPL_EXPORT MappingTable {
private:
friend bool internal::ShutdownCheckNoLeaks(Core*);
- typedef base::hash_map<uintptr_t, embedder::PlatformSharedBufferMapping*>
- AddressToMappingMap;
+ using AddressToMappingMap =
+ base::hash_map<uintptr_t, embedder::PlatformSharedBufferMapping*>;
AddressToMappingMap address_to_mapping_map_;
DISALLOW_COPY_AND_ASSIGN(MappingTable);

Powered by Google App Engine
This is Rietveld 408576698