diff options
author | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-01-04 04:27:31 +0000 |
---|---|---|
committer | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-01-04 04:27:31 +0000 |
commit | 83c63468031ed3bd321904c57781904e5f22132b (patch) | |
tree | d6d240ab634fcc2b0927fbc0a0bb3d2498f38cb8 /ppapi/examples/2d/scroll.cc | |
parent | 60398ccd46e3f31d5d4541c0b6de0edde7f98504 (diff) | |
download | chromium_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/2d/scroll.cc')
-rw-r--r-- | ppapi/examples/2d/scroll.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ppapi/examples/2d/scroll.cc b/ppapi/examples/2d/scroll.cc index f8c365a..5dffa57 100644 --- a/ppapi/examples/2d/scroll.cc +++ b/ppapi/examples/2d/scroll.cc @@ -4,14 +4,14 @@ #include <math.h> -#include "ppapi/cpp/completion_callback.h" #include "ppapi/cpp/graphics_2d.h" #include "ppapi/cpp/image_data.h" #include "ppapi/cpp/instance.h" #include "ppapi/cpp/module.h" -#include "ppapi/cpp/paint_manager.h" #include "ppapi/cpp/rect.h" #include "ppapi/cpp/var.h" +#include "ppapi/utility/completion_callback_factory.h" +#include "ppapi/utility/graphics/paint_manager.h" static const int kSquareSpacing = 98; static const int kSquareSize = 5; |