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

Side by Side Diff: mojo/system/raw_channel_win.cc

Issue 137063010: Mojo: Move platform handle/channel stuff in system to embedder namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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
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 #include "mojo/system/raw_channel.h" 5 #include "mojo/system/raw_channel.h"
6 6
7 #include <stddef.h> 7 #include <stddef.h>
8 8
9 #include "base/logging.h" 9 #include "base/logging.h"
10 10
11 namespace mojo { 11 namespace mojo {
12 namespace system { 12 namespace system {
13 13
14 // ----------------------------------------------------------------------------- 14 // -----------------------------------------------------------------------------
15 15
16 // Static factory method declared in raw_channel.h. 16 // Static factory method declared in raw_channel.h.
17 // static 17 // static
18 RawChannel* RawChannel::Create(ScopedPlatformHandle handle, 18 RawChannel* RawChannel::Create(embedder::ScopedPlatformHandle handle,
19 Delegate* delegate, 19 Delegate* delegate,
20 base::MessageLoop* message_loop) { 20 base::MessageLoop* message_loop) {
21 // TODO(vtl) 21 // TODO(vtl)
22 NOTIMPLEMENTED(); 22 NOTIMPLEMENTED();
23 return NULL; 23 return NULL;
24 } 24 }
25 25
26 } // namespace system 26 } // namespace system
27 } // namespace mojo 27 } // namespace mojo
OLDNEW
« no previous file with comments | « mojo/system/raw_channel_posix_unittest.cc ('k') | mojo/system/remote_message_pipe_posix_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698