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

Side by Side Diff: mojo/system/core_impl.h

Issue 133453003: Mojo: Change "handle_[01]" -> "handle[01]". (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: comment fix Created 6 years, 11 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « mojo/public/system/core_private.cc ('k') | mojo/system/core_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef MOJO_SYSTEM_CORE_IMPL_H_ 5 #ifndef MOJO_SYSTEM_CORE_IMPL_H_
6 #define MOJO_SYSTEM_CORE_IMPL_H_ 6 #define MOJO_SYSTEM_CORE_IMPL_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "base/compiler_specific.h" 9 #include "base/compiler_specific.h"
10 #include "base/containers/hash_tables.h" 10 #include "base/containers/hash_tables.h"
(...skipping 22 matching lines...) Expand all
33 virtual MojoTimeTicks GetTimeTicksNow() OVERRIDE; 33 virtual MojoTimeTicks GetTimeTicksNow() OVERRIDE;
34 virtual MojoResult Close(MojoHandle handle) OVERRIDE; 34 virtual MojoResult Close(MojoHandle handle) OVERRIDE;
35 virtual MojoResult Wait(MojoHandle handle, 35 virtual MojoResult Wait(MojoHandle handle,
36 MojoWaitFlags flags, 36 MojoWaitFlags flags,
37 MojoDeadline deadline) OVERRIDE; 37 MojoDeadline deadline) OVERRIDE;
38 virtual MojoResult WaitMany(const MojoHandle* handles, 38 virtual MojoResult WaitMany(const MojoHandle* handles,
39 const MojoWaitFlags* flags, 39 const MojoWaitFlags* flags,
40 uint32_t num_handles, 40 uint32_t num_handles,
41 MojoDeadline deadline) OVERRIDE; 41 MojoDeadline deadline) OVERRIDE;
42 virtual MojoResult CreateMessagePipe( 42 virtual MojoResult CreateMessagePipe(
43 MojoHandle* message_pipe_handle_0, 43 MojoHandle* message_pipe_handle0,
44 MojoHandle* message_pipe_handle_1) OVERRIDE; 44 MojoHandle* message_pipe_handle1) OVERRIDE;
45 virtual MojoResult WriteMessage(MojoHandle message_pipe_handle, 45 virtual MojoResult WriteMessage(MojoHandle message_pipe_handle,
46 const void* bytes, 46 const void* bytes,
47 uint32_t num_bytes, 47 uint32_t num_bytes,
48 const MojoHandle* handles, 48 const MojoHandle* handles,
49 uint32_t num_handles, 49 uint32_t num_handles,
50 MojoWriteMessageFlags flags) OVERRIDE; 50 MojoWriteMessageFlags flags) OVERRIDE;
51 virtual MojoResult ReadMessage(MojoHandle message_pipe_handle, 51 virtual MojoResult ReadMessage(MojoHandle message_pipe_handle,
52 void* bytes, 52 void* bytes,
53 uint32_t* num_bytes, 53 uint32_t* num_bytes,
54 MojoHandle* handles, 54 MojoHandle* handles,
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
142 // --------------------------------------------------------------------------- 142 // ---------------------------------------------------------------------------
143 143
144 DISALLOW_COPY_AND_ASSIGN(CoreImpl); 144 DISALLOW_COPY_AND_ASSIGN(CoreImpl);
145 }; 145 };
146 146
147 } // namespace system 147 } // namespace system
148 148
149 } // namespace mojo 149 } // namespace mojo
150 150
151 #endif // MOJO_SYSTEM_CORE_IMPL_H_ 151 #endif // MOJO_SYSTEM_CORE_IMPL_H_
OLDNEW
« no previous file with comments | « mojo/public/system/core_private.cc ('k') | mojo/system/core_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698