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

Unified Diff: mojo/edk/embedder/embedder_internal.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/embedder/embedder_internal.h
diff --git a/mojo/edk/embedder/embedder_internal.h b/mojo/edk/embedder/embedder_internal.h
index 833e66b11c2efeee28d79ade6f924e7eadaf37da..752d366dd99d52db785c455107b5bc8064dd4a07 100644
--- a/mojo/edk/embedder/embedder_internal.h
+++ b/mojo/edk/embedder/embedder_internal.h
@@ -24,8 +24,8 @@ namespace system {
class ChannelManager;
class Core;
-// Repeat a typedef in mojo/edk/system/channel_manager.h, to avoid including it.
-typedef uint64_t ChannelId;
+// Duplicate from mojo/edk/system/channel_manager.h, to avoid including it.
jamesr 2015/05/22 18:16:04 might be nice to split this into its own header
viettrungluu 2015/05/22 18:24:27 Will consider, though having a header with just a
+using ChannelId = uint64_t;
} // namespace system

Powered by Google App Engine
This is Rietveld 408576698