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

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

Issue 9122012: gcl change rev (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 years, 11 months 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/mouse_lock/mouse_lock.cc ('k') | ppapi/examples/video_capture/video_capture.cc » ('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) 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 // 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. For that mode, call
11 // URLLoader.FinishSthreamingToFile once the "Open" callback is complete, and 11 // URLLoader.FinishSthreamingToFile once the "Open" callback is complete, and
12 // then call URLResponseInfo.GetBodyAsFileRef once the file stream is complete. 12 // then call URLResponseInfo.GetBodyAsFileRef once the file stream is complete.
13 13
14 #include "ppapi/cpp/completion_callback.h"
15 #include "ppapi/cpp/instance.h" 14 #include "ppapi/cpp/instance.h"
16 #include "ppapi/cpp/module.h" 15 #include "ppapi/cpp/module.h"
17 #include "ppapi/cpp/url_loader.h" 16 #include "ppapi/cpp/url_loader.h"
18 #include "ppapi/cpp/url_request_info.h" 17 #include "ppapi/cpp/url_request_info.h"
19 #include "ppapi/cpp/url_response_info.h" 18 #include "ppapi/cpp/url_response_info.h"
19 #include "ppapi/utility/completion_callback_factory.h"
20 20
21 // Buffer size for reading network data. 21 // Buffer size for reading network data.
22 const int kBufSize = 1024; 22 const int kBufSize = 1024;
23 23
24 class MyInstance : public pp::Instance { 24 class MyInstance : public pp::Instance {
25 public: 25 public:
26 explicit MyInstance(PP_Instance instance) 26 explicit MyInstance(PP_Instance instance)
27 : pp::Instance(instance) { 27 : pp::Instance(instance) {
28 factory_.Initialize(this); 28 factory_.Initialize(this);
29 } 29 }
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after
163 }; 163 };
164 164
165 namespace pp { 165 namespace pp {
166 166
167 // Factory function for your specialization of the Module object. 167 // Factory function for your specialization of the Module object.
168 Module* CreateModule() { 168 Module* CreateModule() {
169 return new MyModule(); 169 return new MyModule();
170 } 170 }
171 171
172 } // namespace pp 172 } // namespace pp
OLDNEW
« no previous file with comments | « ppapi/examples/mouse_lock/mouse_lock.cc ('k') | ppapi/examples/video_capture/video_capture.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698