diff options
author | thakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-08-17 18:05:42 +0000 |
---|---|---|
committer | thakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-08-17 18:05:42 +0000 |
commit | cc854e87cd67d488da2dc066ad743a12c2b108c6 (patch) | |
tree | 6dd39a9a7b1d71ffed07842d5247e5ece297277d /app/resource_bundle.h | |
parent | 9cd458d48d4ed44370505d533e8393f01089d0f2 (diff) | |
download | chromium_src-cc854e87cd67d488da2dc066ad743a12c2b108c6.zip chromium_src-cc854e87cd67d488da2dc066ad743a12c2b108c6.tar.gz chromium_src-cc854e87cd67d488da2dc066ad743a12c2b108c6.tar.bz2 |
A canvas_paint for OS X.
Makes it possible to use skia to paint something into a bitmap and then blit that bitmap to screen. I need this so that I can call download_util::PaintDownloadProgress(), which needs an SkCanvas.
To be used like this:
{
gfx::CanvasPaint canvas(myRect);
canvas.set_composite_alpha(true);
download_util::PaintDownloadprogres(&canvas, ...);
}
BUG=18902
TEST=none
Review URL: http://codereview.chromium.org/172046
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@23551 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'app/resource_bundle.h')
-rw-r--r-- | app/resource_bundle.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/resource_bundle.h b/app/resource_bundle.h index 8d0b29a..bba8560 100644 --- a/app/resource_bundle.h +++ b/app/resource_bundle.h @@ -67,7 +67,7 @@ class ResourceBundle { void LoadThemeResources(); // Gets the bitmap with the specified resource_id, first by looking into the - // theme data, than in the current module data if applicable. + // theme data, then in the current module data if applicable. // Returns a pointer to a shared instance of the SkBitmap. This shared bitmap // is owned by the resource bundle and should not be freed. // |