summaryrefslogtreecommitdiffstats
path: root/ppapi/examples/url_loader/streaming.cc
diff options
context:
space:
mode:
authorbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-01-06 22:50:33 +0000
committerbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-01-06 22:50:33 +0000
commitae5ff9ae378480a54511e007541b62b5d9ea94bf (patch)
treeed127f19d1125bb9f94b8b54e03fa32fbac634b1 /ppapi/examples/url_loader/streaming.cc
parentafc72b46447cc5a5fe181552318fc7bd76d1ffa6 (diff)
downloadchromium_src-ae5ff9ae378480a54511e007541b62b5d9ea94bf.zip
chromium_src-ae5ff9ae378480a54511e007541b62b5d9ea94bf.tar.gz
chromium_src-ae5ff9ae378480a54511e007541b62b5d9ea94bf.tar.bz2
Move paint aggregator and the completion callback factory.
[Reland of 116281] Move paint aggregator and the completion callback factory to the ppapi/helpers directory since they're not strictly wrappers. Review URL: http://codereview.chromium.org/9030001 Review URL: http://codereview.chromium.org/9122012 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@116759 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/examples/url_loader/streaming.cc')
-rw-r--r--ppapi/examples/url_loader/streaming.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/ppapi/examples/url_loader/streaming.cc b/ppapi/examples/url_loader/streaming.cc
index b6df6cb..b7186ae 100644
--- a/ppapi/examples/url_loader/streaming.cc
+++ b/ppapi/examples/url_loader/streaming.cc
@@ -11,12 +11,12 @@
// URLLoader.FinishSthreamingToFile once the "Open" callback is complete, and
// then call URLResponseInfo.GetBodyAsFileRef once the file stream is complete.
-#include "ppapi/cpp/completion_callback.h"
#include "ppapi/cpp/instance.h"
#include "ppapi/cpp/module.h"
#include "ppapi/cpp/url_loader.h"
#include "ppapi/cpp/url_request_info.h"
#include "ppapi/cpp/url_response_info.h"
+#include "ppapi/utility/completion_callback_factory.h"
// Buffer size for reading network data.
const int kBufSize = 1024;