| 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 "webkit/plugins/ppapi/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/plugin_module.h" | 10 #include "webkit/plugins/ppapi/plugin_module.h" |
| 11 #include "webkit/plugins/ppapi/ppapi_plugin_instance.h" | 11 #include "webkit/plugins/ppapi/ppapi_plugin_instance.h" |
| 12 #include "webkit/plugins/ppapi/ppb_url_loader_impl.h" | 12 #include "webkit/plugins/ppapi/ppb_url_loader_impl.h" |
| 13 #include "webkit/plugins/ppapi/resource.h" | |
| 14 #include "webkit/plugins/ppapi/resource_tracker.h" | 13 #include "webkit/plugins/ppapi/resource_tracker.h" |
| 15 | 14 |
| 16 using ppapi::thunk::EnterResource; | 15 using ppapi::thunk::EnterResource; |
| 17 using ppapi::thunk::PPB_URLLoader_API; | 16 using ppapi::thunk::PPB_URLLoader_API; |
| 18 | 17 |
| 19 namespace webkit { | 18 namespace webkit { |
| 20 namespace ppapi { | 19 namespace ppapi { |
| 21 | 20 |
| 22 namespace { | 21 namespace { |
| 23 | 22 |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 71 | 70 |
| 72 } // namespace | 71 } // namespace |
| 73 | 72 |
| 74 // static | 73 // static |
| 75 const PPB_Proxy_Private* PPB_Proxy_Impl::GetInterface() { | 74 const PPB_Proxy_Private* PPB_Proxy_Impl::GetInterface() { |
| 76 return &ppb_proxy; | 75 return &ppb_proxy; |
| 77 } | 76 } |
| 78 | 77 |
| 79 } // namespace ppapi | 78 } // namespace ppapi |
| 80 } // namespace webkit | 79 } // namespace webkit |
| OLD | NEW |