| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 "webkit/plugins/ppapi/ppb_transport_impl.h" | 5 #include "webkit/plugins/ppapi/ppb_transport_impl.h" |
| 6 | 6 |
| 7 #include "base/singleton.h" | 7 #include "base/singleton.h" |
| 8 #include "base/thread_local.h" | 8 #include "base/threading/thread_local.h" |
| 9 #include "ppapi/c/dev/ppb_transport_dev.h" | 9 #include "ppapi/c/dev/ppb_transport_dev.h" |
| 10 #include "webkit/plugins/ppapi/common.h" | 10 #include "webkit/plugins/ppapi/common.h" |
| 11 #include "webkit/plugins/ppapi/plugin_module.h" | 11 #include "webkit/plugins/ppapi/plugin_module.h" |
| 12 #include "webkit/plugins/ppapi/ppapi_plugin_instance.h" | 12 #include "webkit/plugins/ppapi/ppapi_plugin_instance.h" |
| 13 | 13 |
| 14 namespace webkit { | 14 namespace webkit { |
| 15 namespace ppapi { | 15 namespace ppapi { |
| 16 | 16 |
| 17 namespace { | 17 namespace { |
| 18 | 18 |
| (...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 136 } | 136 } |
| 137 | 137 |
| 138 bool PPB_Transport_Impl::Init(const char* name, const char* proto) { | 138 bool PPB_Transport_Impl::Init(const char* name, const char* proto) { |
| 139 // TODO(juberti): impl | 139 // TODO(juberti): impl |
| 140 return false; | 140 return false; |
| 141 } | 141 } |
| 142 | 142 |
| 143 } // namespace ppapi | 143 } // namespace ppapi |
| 144 } // namespace webkit | 144 } // namespace webkit |
| 145 | 145 |
| OLD | NEW |