diff options
author | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-01-14 16:58:55 +0000 |
---|---|---|
committer | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-01-14 16:58:55 +0000 |
commit | 87080c619c9d60f0ed3aa988d89b36c35eca95b1 (patch) | |
tree | 93d5c34a529858c1d891a55a092ee53efd06976b /skia/ext/bitmap_platform_device_linux.cc | |
parent | c31085d9656ff79a389318ffc7afed0fd2cd296c (diff) | |
download | chromium_src-87080c619c9d60f0ed3aa988d89b36c35eca95b1.zip chromium_src-87080c619c9d60f0ed3aa988d89b36c35eca95b1.tar.gz chromium_src-87080c619c9d60f0ed3aa988d89b36c35eca95b1.tar.bz2 |
Remove a bunch of base dependencies from skia/ext. The only nontrivial change is
in bitmap_platform_device_mac. The refcounting now matches the way the Windows
file works.
Review URL: http://codereview.chromium.org/17627
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@8015 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'skia/ext/bitmap_platform_device_linux.cc')
-rw-r--r-- | skia/ext/bitmap_platform_device_linux.cc | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/skia/ext/bitmap_platform_device_linux.cc b/skia/ext/bitmap_platform_device_linux.cc index 4e4615f..6f7277e 100644 --- a/skia/ext/bitmap_platform_device_linux.cc +++ b/skia/ext/bitmap_platform_device_linux.cc @@ -6,8 +6,6 @@ #include <cairo/cairo.h> -#include "base/logging.h" - namespace skia { // ----------------------------------------------------------------------------- @@ -32,7 +30,10 @@ class BitmapPlatformDeviceLinux::BitmapPlatformDeviceLinuxData cairo_surface_destroy(surface_); } - DISALLOW_EVIL_CONSTRUCTORS(BitmapPlatformDeviceLinuxData); + // Disallow copy & assign. + BitmapPlatformDeviceLinuxData(const BitmapPlatformDeviceLinuxData&); + BitmapPlatformDeviceLinuxData& operator=( + const BitmapPlatformDeviceLinuxData&); }; // We use this static factory function instead of the regular constructor so |