OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 // This example shows how to use the URLLoader in streaming mode (reading to | 5 // This example shows how to use the URLLoader in streaming mode (reading to |
6 // memory as data comes over the network). This example uses PostMessage between | 6 // memory as data comes over the network). This example uses PostMessage between |
7 // the plugin and the url_loader.html page in this directory to start the load | 7 // the plugin and the url_loader.html page in this directory to start the load |
8 // and to communicate the result. | 8 // and to communicate the result. |
9 // | 9 // |
10 // The other mode is to stream to a file instead. For that mode, call | 10 // The other mode is to stream to a file instead. See stream_to_file.cc |
11 // URLLoader.FinishSthreamingToFile once the "Open" callback is complete, and | |
12 // then call URLResponseInfo.GetBodyAsFileRef once the file stream is complete. | |
13 | 11 |
14 #include "ppapi/cpp/instance.h" | 12 #include "ppapi/cpp/instance.h" |
15 #include "ppapi/cpp/module.h" | 13 #include "ppapi/cpp/module.h" |
16 #include "ppapi/cpp/url_loader.h" | 14 #include "ppapi/cpp/url_loader.h" |
17 #include "ppapi/cpp/url_request_info.h" | 15 #include "ppapi/cpp/url_request_info.h" |
18 #include "ppapi/cpp/url_response_info.h" | 16 #include "ppapi/cpp/url_response_info.h" |
19 #include "ppapi/utility/completion_callback_factory.h" | 17 #include "ppapi/utility/completion_callback_factory.h" |
20 | 18 |
21 // When compiling natively on Windows, PostMessage can be #define-d to | 19 // When compiling natively on Windows, PostMessage can be #define-d to |
22 // something else. | 20 // something else. |
(...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
169 }; | 167 }; |
170 | 168 |
171 namespace pp { | 169 namespace pp { |
172 | 170 |
173 // Factory function for your specialization of the Module object. | 171 // Factory function for your specialization of the Module object. |
174 Module* CreateModule() { | 172 Module* CreateModule() { |
175 return new MyModule(); | 173 return new MyModule(); |
176 } | 174 } |
177 | 175 |
178 } // namespace pp | 176 } // namespace pp |
OLD | NEW |