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 28