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 WEBKIT_PLUGINS_PPAPI_PPB_URL_LOADER_IMPL_H_ | 5 #ifndef WEBKIT_PLUGINS_PPAPI_PPB_URL_LOADER_IMPL_H_ |
6 #define WEBKIT_PLUGINS_PPAPI_PPB_URL_LOADER_IMPL_H_ | 6 #define WEBKIT_PLUGINS_PPAPI_PPB_URL_LOADER_IMPL_H_ |
7 | 7 |
8 #include <deque> | 8 #include <deque> |
9 | 9 |
10 #include "base/memory/ref_counted.h" | 10 #include "base/memory/ref_counted.h" |
11 #include "base/memory/scoped_ptr.h" | 11 #include "base/memory/scoped_ptr.h" |
12 #include "ppapi/c/pp_completion_callback.h" | 12 #include "ppapi/c/pp_completion_callback.h" |
13 #include "ppapi/c/trusted/ppb_url_loader_trusted.h" | 13 #include "ppapi/c/trusted/ppb_url_loader_trusted.h" |
14 #include "ppapi/shared_impl/ppb_url_request_info_shared.h" | |
15 #include "ppapi/shared_impl/resource.h" | 14 #include "ppapi/shared_impl/resource.h" |
| 15 #include "ppapi/shared_impl/url_request_info_impl.h" |
16 #include "ppapi/thunk/ppb_url_loader_api.h" | 16 #include "ppapi/thunk/ppb_url_loader_api.h" |
17 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebURLLoader
Client.h" | 17 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebURLLoader
Client.h" |
18 #include "webkit/plugins/ppapi/callbacks.h" | 18 #include "webkit/plugins/ppapi/callbacks.h" |
19 #include "webkit/plugins/ppapi/ppapi_plugin_instance.h" | 19 #include "webkit/plugins/ppapi/ppapi_plugin_instance.h" |
20 | 20 |
21 namespace WebKit { | 21 namespace WebKit { |
22 class WebURL; | 22 class WebURL; |
23 } | 23 } |
24 | 24 |
25 namespace webkit { | 25 namespace webkit { |
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
156 | 156 |
157 PP_URLLoaderTrusted_StatusCallback status_callback_; | 157 PP_URLLoaderTrusted_StatusCallback status_callback_; |
158 | 158 |
159 DISALLOW_COPY_AND_ASSIGN(PPB_URLLoader_Impl); | 159 DISALLOW_COPY_AND_ASSIGN(PPB_URLLoader_Impl); |
160 }; | 160 }; |
161 | 161 |
162 } // namespace ppapi | 162 } // namespace ppapi |
163 } // namespace webkit | 163 } // namespace webkit |
164 | 164 |
165 #endif // WEBKIT_PLUGINS_PPAPI_PPB_URL_LOADER_IMPL_H_ | 165 #endif // WEBKIT_PLUGINS_PPAPI_PPB_URL_LOADER_IMPL_H_ |
OLD | NEW |