| OLD | NEW |
| 1 // Copyright (c) 2011 The Native Client Authors. All rights reserved. | 1 // Copyright (c) 2011 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 "native_client/src/shared/ppapi_proxy/plugin_ppb_messaging.h" | 5 #include "native_client/src/shared/ppapi_proxy/plugin_ppb_messaging.h" |
| 6 | 6 |
| 7 #include "native_client/src/include/nacl_scoped_ptr.h" | 7 #include "native_client/src/include/nacl_scoped_ptr.h" |
| 8 #include "native_client/src/include/portability.h" | 8 #include "native_client/src/include/portability.h" |
| 9 #include "native_client/src/shared/ppapi_proxy/object_serialize.h" | 9 #include "native_client/src/shared/ppapi_proxy/object_serialize.h" |
| 10 #include "native_client/src/shared/ppapi_proxy/plugin_globals.h" | 10 #include "native_client/src/shared/ppapi_proxy/plugin_globals.h" |
| 11 #include "native_client/src/shared/ppapi_proxy/utility.h" | 11 #include "native_client/src/shared/ppapi_proxy/utility.h" |
| (...skipping 28 matching lines...) Expand all Loading... |
| 40 } // namespace | 40 } // namespace |
| 41 | 41 |
| 42 const PPB_Messaging* PluginMessaging::GetInterface() { | 42 const PPB_Messaging* PluginMessaging::GetInterface() { |
| 43 static const PPB_Messaging messaging_interface = { | 43 static const PPB_Messaging messaging_interface = { |
| 44 PostMessage | 44 PostMessage |
| 45 }; | 45 }; |
| 46 return &messaging_interface; | 46 return &messaging_interface; |
| 47 } | 47 } |
| 48 | 48 |
| 49 } // namespace ppapi_proxy | 49 } // namespace ppapi_proxy |
| OLD | NEW |