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

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

Issue 60103005: Mojo: First stab at making MessagePipes work across OS pipes. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebased Created 7 years, 1 month 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
(Empty)
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
3 // found in the LICENSE file.
4
5 #include "mojo/system/raw_channel.h"
6
7 #include <stddef.h>
8
9 #include "base/logging.h"
10
11 namespace mojo {
12 namespace system {
13
14 // -----------------------------------------------------------------------------
15
16 // Static factory method declared in raw_channel.h.
17 // static
18 RawChannel* RawChannel::Create(const PlatformChannelHandle& handle,
19 Delegate* delegate,
20 base::MessageLoop* message_loop) {
21 // TODO(vtl)
22 NOTIMPLEMENTED();
23 return NULL;
24 }
25
26 } // namespace system
27 } // namespace mojo
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698