| OLD | NEW |
| (Empty) | |
| 1 // |
| 2 // Copyright 2011 The Native Client Authors. All rights reserved. |
| 3 // Use of this source code is governed by a BSD-style license that can |
| 4 // be found in the LICENSE file. |
| 5 |
| 6 #ifndef NATIVE_CLIENT_SRC_SHARED_PPAPI_PROXY_PLUGIN_PPB_GLES_EXTENSIONS_H_ |
| 7 #define NATIVE_CLIENT_SRC_SHARED_PPAPI_PROXY_PLUGIN_PPB_GLES_EXTENSIONS_H_ |
| 8 |
| 9 #include "ppapi/c/dev/ppb_gles_chromium_texture_mapping_dev.h" |
| 10 |
| 11 namespace ppapi_proxy { |
| 12 |
| 13 namespace GLESChromiumTextureMapping { |
| 14 |
| 15 const PPB_GLESChromiumTextureMapping_Dev* GetInterface(); |
| 16 |
| 17 } // namespace GLESChromiumTextureMapping |
| 18 |
| 19 } // namespace ppapi_proxy |
| 20 |
| 21 #endif // NATIVE_CLIENT_SRC_SHARED_PPAPI_PROXY_PLUGIN_PPB_GLES_EXTENSIONS_H_ |
| 22 |
| OLD | NEW |