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

Unified Diff: app/gfx/canvas_win.cc

Issue 125109: Refactor the PlatformContext layer to have only one class. (Closed)
Patch Set: Created 11 years, 6 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
« no previous file with comments | « app/gfx/canvas_paint.h ('k') | base/gfx/native_theme.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: app/gfx/canvas_win.cc
diff --git a/app/gfx/canvas_win.cc b/app/gfx/canvas_win.cc
index 2d818d4c25331878e03a7df448d8b316199aa5ca..9f70136bfc8f3b637217b24bb498ab1e57fe3f53 100644
--- a/app/gfx/canvas_win.cc
+++ b/app/gfx/canvas_win.cc
@@ -120,10 +120,10 @@ int ComputeFormatFlags(int flags, const std::wstring& text) {
namespace gfx {
Canvas::Canvas(int width, int height, bool is_opaque)
- : skia::PlatformCanvasWin(width, height, is_opaque) {
+ : skia::PlatformCanvas(width, height, is_opaque) {
}
-Canvas::Canvas() : skia::PlatformCanvasWin() {
+Canvas::Canvas() : skia::PlatformCanvas() {
}
Canvas::~Canvas() {
« no previous file with comments | « app/gfx/canvas_paint.h ('k') | base/gfx/native_theme.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698