aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar reed@google.com <reed@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2011-07-21 18:00:46 +0000
committerGravatar reed@google.com <reed@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2011-07-21 18:00:46 +0000
commit6dc745506e6d6cc0936fed4de24443dc1ecb5a34 (patch)
tree59e8ea4d23066c2c12a31aae68dd1e096bfa0f65
parentbfe6c5fc831198be22feab645f261bf0e23dc38c (diff)
remove forward declaration and reference to extinct SkDeviceFactory
git-svn-id: http://skia.googlecode.com/svn/trunk@1931 2bbb7eff-a529-9590-31e7-b0007b416f81
-rw-r--r--include/core/SkCanvas.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/include/core/SkCanvas.h b/include/core/SkCanvas.h
index 53c13e552e..93c03ab8ea 100644
--- a/include/core/SkCanvas.h
+++ b/include/core/SkCanvas.h
@@ -30,7 +30,6 @@
class SkBounder;
class SkDevice;
-class SkDeviceFactory;
class SkDraw;
class SkDrawFilter;
class SkPicture;
@@ -54,8 +53,7 @@ class SK_API SkCanvas : public SkRefCnt {
public:
SkCanvas();
- /** Construct a canvas with the specified device to draw into. The device
- factory will be retrieved from the passed device.
+ /** Construct a canvas with the specified device to draw into.
@param device Specifies a device for the canvas to draw into.
*/
@@ -803,7 +801,6 @@ private:
SkBounder* fBounder;
SkDevice* fLastDeviceToGainFocus;
- SkDeviceFactory* fDeviceFactory;
void prepareForDeviceDraw(SkDevice*, const SkMatrix&, const SkRegion&,
const SkClipStack& clipStack);