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-04 04:27:31 +0000
committerbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-01-04 04:27:31 +0000
commit83c63468031ed3bd321904c57781904e5f22132b (patch)
treed6d240ab634fcc2b0927fbc0a0bb3d2498f38cb8 /ppapi/examples/url_loader/streaming.cc
parent60398ccd46e3f31d5d4541c0b6de0edde7f98504 (diff)
downloadchromium_src-83c63468031ed3bd321904c57781904e5f22132b.zip
chromium_src-83c63468031ed3bd321904c57781904e5f22132b.tar.gz
chromium_src-83c63468031ed3bd321904c57781904e5f22132b.tar.bz2
Move paint aggregator and the completion callback factory.
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 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@116281 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;