diff options
author | erg@google.com <erg@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-08-28 22:34:22 +0000 |
---|---|---|
committer | erg@google.com <erg@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-08-28 22:34:22 +0000 |
commit | 96ffd0f9c67f2be3f77c630d11c5d24fa32db736 (patch) | |
tree | f60125c88d7b61536530b0bf1926c0b7a1b337c7 /base/gfx/platform_canvas.h | |
parent | a03a3b25f70f7cf8b061b32c04f0575625b1bc6e (diff) | |
download | chromium_src-96ffd0f9c67f2be3f77c630d11c5d24fa32db736.zip chromium_src-96ffd0f9c67f2be3f77c630d11c5d24fa32db736.tar.gz chromium_src-96ffd0f9c67f2be3f77c630d11c5d24fa32db736.tar.bz2 |
Provide what looks like the minimal platform specific interface for skia. This will undoubtedly grow in the future.
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@1513 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/gfx/platform_canvas.h')
-rw-r--r-- | base/gfx/platform_canvas.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/base/gfx/platform_canvas.h b/base/gfx/platform_canvas.h index 3219a7a..d7433cd 100644 --- a/base/gfx/platform_canvas.h +++ b/base/gfx/platform_canvas.h @@ -16,6 +16,9 @@ typedef PlatformCanvasWin PlatformCanvas; #elif defined(OS_MACOSX) class PlatformCanvasMac; typedef PlatformCanvasMac PlatformCanvas; +#elif defined(OS_LINUX) +class PlatformCanvasLinux; +typedef PlatformCanvasLinux PlatformCanvas; #endif } // namespace gfx |