OLD | NEW |
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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 CONTENT_RENDERER_PEPPER_PEPPER_URL_LOADER_HOST_H_ | 5 #ifndef CONTENT_RENDERER_PEPPER_PEPPER_URL_LOADER_HOST_H_ |
6 #define CONTENT_RENDERER_PEPPER_PEPPER_URL_LOADER_HOST_H_ | 6 #define CONTENT_RENDERER_PEPPER_PEPPER_URL_LOADER_HOST_H_ |
7 | 7 |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "content/common/content_export.h" | 10 #include "content/common/content_export.h" |
11 #include "ppapi/host/resource_host.h" | 11 #include "ppapi/host/resource_host.h" |
12 #include "ppapi/proxy/resource_message_params.h" | 12 #include "ppapi/proxy/resource_message_params.h" |
13 #include "ppapi/shared_impl/url_request_info_data.h" | 13 #include "ppapi/shared_impl/url_request_info_data.h" |
14 #include "ppapi/shared_impl/url_response_info_data.h" | 14 #include "ppapi/shared_impl/url_response_info_data.h" |
15 #include "third_party/WebKit/Source/Platform/chromium/public/WebURLLoaderClient.
h" | 15 #include "third_party/WebKit/public/platform/WebURLLoaderClient.h" |
16 | 16 |
17 namespace WebKit { | 17 namespace WebKit { |
18 class WebFrame; | 18 class WebFrame; |
19 class WebURLLoader; | 19 class WebURLLoader; |
20 } | 20 } |
21 | 21 |
22 namespace content { | 22 namespace content { |
23 | 23 |
24 class RendererPpapiHost; | 24 class RendererPpapiHost; |
25 | 25 |
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
129 // to the plugin when the plugin side connects. The pointers are owned by | 129 // to the plugin when the plugin side connects. The pointers are owned by |
130 // this object and must be deleted. | 130 // this object and must be deleted. |
131 std::vector<IPC::Message*> pending_replies_; | 131 std::vector<IPC::Message*> pending_replies_; |
132 | 132 |
133 DISALLOW_COPY_AND_ASSIGN(PepperURLLoaderHost); | 133 DISALLOW_COPY_AND_ASSIGN(PepperURLLoaderHost); |
134 }; | 134 }; |
135 | 135 |
136 } // namespace content | 136 } // namespace content |
137 | 137 |
138 #endif // CONTENT_RENDERER_PEPPER_PEPPER_URL_LOADER_HOST_H_ | 138 #endif // CONTENT_RENDERER_PEPPER_PEPPER_URL_LOADER_HOST_H_ |
OLD | NEW |