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 #include "webkit/plugins/ppapi/ppb_opengles_impl.h" | 5 #include "webkit/plugins/ppapi/ppb_opengles_impl.h" |
6 | 6 |
7 #include "ppapi/shared_impl/opengles2_impl.h" | 7 #include "ppapi/shared_impl/opengles2_impl.h" |
8 | 8 |
9 namespace webkit { | 9 namespace webkit { |
10 namespace ppapi { | 10 namespace ppapi { |
11 | 11 |
12 const PPB_OpenGLES2* PPB_OpenGLES_Impl::GetInterface() { | 12 const PPB_OpenGLES2* PPB_OpenGLES_Impl::GetInterface() { |
13 return ::ppapi::OpenGLES2Impl::GetInterface(); | 13 return ::ppapi::OpenGLES2Impl::GetInterface(); |
14 } | 14 } |
15 | 15 |
16 } // namespace ppapi | 16 } // namespace ppapi |
17 } // namespace webkit | 17 } // namespace webkit |
18 | 18 |
OLD | NEW |