Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(910)

Unified Diff: ui/gfx/canvas.cc

Issue 8122013: Allow CanvasSkia to bind to an existing SkCanvas. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: 1 more fix Created 9 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« ui/gfx/canvas.h ('K') | « ui/gfx/canvas.h ('k') | ui/gfx/canvas_skia.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/gfx/canvas.cc
diff --git a/ui/gfx/canvas.cc b/ui/gfx/canvas.cc
index e787aabc1d468f6dd63daeca6c65568b87dbb8a2..6814d4c74cb969eb5564c7e628d879e5ff0571b0 100644
--- a/ui/gfx/canvas.cc
+++ b/ui/gfx/canvas.cc
@@ -14,4 +14,12 @@ const CanvasSkia* Canvas::AsCanvasSkia() const {
return NULL;
}
+SkCanvas* Canvas::GetSkCanvas() {
+ return NULL;
+}
+
+const SkCanvas* Canvas::GetSkCanvas() const {
+ return NULL;
+}
+
} // namespace gfx;
« ui/gfx/canvas.h ('K') | « ui/gfx/canvas.h ('k') | ui/gfx/canvas_skia.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698