Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(28)

Side by Side Diff: ppapi/examples/url_loader/streaming.cc

Issue 10993031: Refactor the URLResponseInfo to use new design (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « ppapi/examples/url_loader/stream_to_file.cc ('k') | ppapi/ppapi_proxy.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « ppapi/examples/url_loader/stream_to_file.cc ('k') | ppapi/ppapi_proxy.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698