| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 // Defines helper functions for all interfaces supported by the Native Client | 5 // Defines helper functions for all interfaces supported by the Native Client |
| 6 // proxy. | 6 // proxy. |
| 7 | 7 |
| 8 #ifndef PPAPI_NATIVE_CLIENT_TESTS_PPAPI_TEST_LIB_GET_BROWSER_INTERFACE_H_ | 8 #ifndef CHROME_TEST_DATA_NACL_PPAPI_TEST_LIB_GET_BROWSER_INTERFACE_H_ |
| 9 #define PPAPI_NATIVE_CLIENT_TESTS_PPAPI_TEST_LIB_GET_BROWSER_INTERFACE_H_ | 9 #define CHROME_TEST_DATA_NACL_PPAPI_TEST_LIB_GET_BROWSER_INTERFACE_H_ |
| 10 | 10 |
| 11 #include "ppapi/c/dev/ppb_memory_dev.h" | 11 #include "ppapi/c/dev/ppb_memory_dev.h" |
| 12 #include "ppapi/c/ppb_audio.h" | 12 #include "ppapi/c/ppb_audio.h" |
| 13 #include "ppapi/c/ppb_audio_config.h" | 13 #include "ppapi/c/ppb_audio_config.h" |
| 14 #include "ppapi/c/ppb_core.h" | 14 #include "ppapi/c/ppb_core.h" |
| 15 #include "ppapi/c/ppb_file_io.h" | 15 #include "ppapi/c/ppb_file_io.h" |
| 16 #include "ppapi/c/ppb_file_ref.h" | 16 #include "ppapi/c/ppb_file_ref.h" |
| 17 #include "ppapi/c/ppb_file_system.h" | 17 #include "ppapi/c/ppb_file_system.h" |
| 18 #include "ppapi/c/ppb_fullscreen.h" | 18 #include "ppapi/c/ppb_fullscreen.h" |
| 19 #include "ppapi/c/ppb_graphics_2d.h" | 19 #include "ppapi/c/ppb_graphics_2d.h" |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 | 72 |
| 73 const PPB_Memory_Dev* PPBMemoryDev(); | 73 const PPB_Memory_Dev* PPBMemoryDev(); |
| 74 | 74 |
| 75 // | 75 // |
| 76 // Private interfaces. | 76 // Private interfaces. |
| 77 // Lookup returns NULL if the interface is not available. | 77 // Lookup returns NULL if the interface is not available. |
| 78 // | 78 // |
| 79 | 79 |
| 80 const PPB_Testing_Private* PPBTestingPrivate(); | 80 const PPB_Testing_Private* PPBTestingPrivate(); |
| 81 | 81 |
| 82 #endif // PPAPI_NATIVE_CLIENT_TESTS_PPAPI_TEST_LIB_GET_BROWSER_INTERFACE_H_ | 82 #endif // CHROME_TEST_DATA_NACL_PPAPI_TEST_LIB_GET_BROWSER_INTERFACE_H_ |
| OLD | NEW |