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_proxy_impl.h" | 5 #include "content/renderer/pepper/ppb_proxy_impl.h" |
6 | 6 |
7 #include "ppapi/c/private/ppb_proxy_private.h" | 7 #include "ppapi/c/private/ppb_proxy_private.h" |
8 #include "ppapi/thunk/enter.h" | 8 #include "ppapi/thunk/enter.h" |
9 #include "ppapi/thunk/ppb_image_data_api.h" | 9 #include "ppapi/thunk/ppb_image_data_api.h" |
10 #include "webkit/plugins/ppapi/host_globals.h" | 10 #include "content/renderer/pepper/host_globals.h" |
11 #include "webkit/plugins/ppapi/plugin_module.h" | 11 #include "content/renderer/pepper/plugin_module.h" |
12 | 12 |
13 using ppapi::PpapiGlobals; | 13 using ppapi::PpapiGlobals; |
14 using ppapi::thunk::EnterResource; | 14 using ppapi::thunk::EnterResource; |
15 using ppapi::thunk::PPB_URLLoader_API; | 15 using ppapi::thunk::PPB_URLLoader_API; |
16 | 16 |
17 namespace webkit { | 17 namespace webkit { |
18 namespace ppapi { | 18 namespace ppapi { |
19 | 19 |
20 namespace { | 20 namespace { |
21 | 21 |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
70 | 70 |
71 } // namespace | 71 } // namespace |
72 | 72 |
73 // static | 73 // static |
74 const PPB_Proxy_Private* PPB_Proxy_Impl::GetInterface() { | 74 const PPB_Proxy_Private* PPB_Proxy_Impl::GetInterface() { |
75 return &ppb_proxy; | 75 return &ppb_proxy; |
76 } | 76 } |
77 | 77 |
78 } // namespace ppapi | 78 } // namespace ppapi |
79 } // namespace webkit | 79 } // namespace webkit |
OLD | NEW |