Skip to content

Commit

Permalink
Mojo: "> >" -> ">>" in mojo/system.
Browse files Browse the repository at this point in the history
R=jamesr@chromium.org

Review URL: https://codereview.chromium.org/604643003

Cr-Commit-Position: refs/heads/master@{#296680}
  • Loading branch information
viettrungluu-cr authored and Commit bot committed Sep 25, 2014
1 parent 497416b commit b9471b5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion mojo/system/channel.h
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ class MOJO_SYSTEM_IMPL_EXPORT Channel
bool is_shutting_down_;

typedef base::hash_map<MessageInTransit::EndpointId,
scoped_refptr<ChannelEndpoint> > IdToEndpointMap;
scoped_refptr<ChannelEndpoint>> IdToEndpointMap;
IdToEndpointMap local_id_to_endpoint_map_;
// The next local ID to try (when allocating new local IDs). Note: It should
// be checked for existence before use.
Expand Down
2 changes: 1 addition & 1 deletion mojo/system/dispatcher.h
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ class ProxyMessagePipeEndpoint;
class TransportData;
class Waiter;

typedef std::vector<scoped_refptr<Dispatcher> > DispatcherVector;
typedef std::vector<scoped_refptr<Dispatcher>> DispatcherVector;

namespace test {

Expand Down
2 changes: 1 addition & 1 deletion mojo/system/handle_table.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class Core;
class Dispatcher;
class DispatcherTransport;

typedef std::vector<scoped_refptr<Dispatcher> > DispatcherVector;
typedef std::vector<scoped_refptr<Dispatcher>> DispatcherVector;

// Test-only function (defined/used in embedder/test_embedder.cc). Declared here
// so it can be friended.
Expand Down

0 comments on commit b9471b5

Please sign in to comment.