summaryrefslogtreecommitdiffstats
path: root/skia/ext/vector_canvas_linux.cc
diff options
context:
space:
mode:
authorvandebo@chromium.org <vandebo@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-10-27 16:56:57 +0000
committervandebo@chromium.org <vandebo@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-10-27 16:56:57 +0000
commit56b9875e3dcb7b7c3a28cc0bfd50784dfcd45dc1 (patch)
tree0414f338fdc6f799c4728ed9807701a8c854fc1f /skia/ext/vector_canvas_linux.cc
parent03c4b49185ad1678349023ab3a70f7bb9773df7d (diff)
downloadchromium_src-56b9875e3dcb7b7c3a28cc0bfd50784dfcd45dc1.zip
chromium_src-56b9875e3dcb7b7c3a28cc0bfd50784dfcd45dc1.tar.gz
chromium_src-56b9875e3dcb7b7c3a28cc0bfd50784dfcd45dc1.tar.bz2
Roll Skia deps to r621.
Move device capabilities from device factories to the device class itself. (Skia r618) Cleanup: remove the Sk prefix from our device factories and inherit from SkDeviceFactory instead of SkRasterDeviceFactory (no real change). BUG=None TEST=None Review URL: http://codereview.chromium.org/4143002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@64086 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'skia/ext/vector_canvas_linux.cc')
-rw-r--r--skia/ext/vector_canvas_linux.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/skia/ext/vector_canvas_linux.cc b/skia/ext/vector_canvas_linux.cc
index f2b8371..aff4fbe 100644
--- a/skia/ext/vector_canvas_linux.cc
+++ b/skia/ext/vector_canvas_linux.cc
@@ -15,8 +15,8 @@ VectorCanvas::VectorCanvas(cairo_t* context, int width, int height) {
}
bool VectorCanvas::initialize(cairo_t* context, int width, int height) {
- SkDevice* device = SkVectorPlatformDeviceFactory::CreateDevice(context, width,
- height, true);
+ SkDevice* device = VectorPlatformDeviceFactory::CreateDevice(context, width,
+ height, true);
if (!device)
return false;