| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium 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 #ifndef PPAPI_THUNK_THUNK_H_ | 5 #ifndef PPAPI_THUNK_THUNK_H_ |
| 6 #define PPAPI_THUNK_THUNK_H_ | 6 #define PPAPI_THUNK_THUNK_H_ |
| 7 | 7 |
| 8 #include "base/synchronization/lock.h" | 8 #include "base/synchronization/lock.h" |
| 9 | 9 |
| 10 struct PPB_Font_Dev; |
| 10 struct PPB_Graphics2D; | 11 struct PPB_Graphics2D; |
| 11 struct PPB_ImageData; | 12 struct PPB_ImageData; |
| 12 | 13 |
| 13 namespace ppapi { | 14 namespace ppapi { |
| 14 namespace thunk { | 15 namespace thunk { |
| 15 | 16 |
| 17 const PPB_Font_Dev* GetPPB_Font_Thunk(); |
| 16 const PPB_Graphics2D* GetPPB_Graphics2D_Thunk(); | 18 const PPB_Graphics2D* GetPPB_Graphics2D_Thunk(); |
| 17 const PPB_ImageData* GetPPB_ImageData_Thunk(); | 19 const PPB_ImageData* GetPPB_ImageData_Thunk(); |
| 18 | 20 |
| 19 } // namespace thunk | 21 } // namespace thunk |
| 20 } // namespace ppapi | 22 } // namespace ppapi |
| 21 | 23 |
| 22 #endif // PPAPI_THUNK_THUNK_H_ | 24 #endif // PPAPI_THUNK_THUNK_H_ |
| 23 | 25 |
| 24 | 26 |
| OLD | NEW |