summaryrefslogtreecommitdiffstats
path: root/skia/ext
diff options
context:
space:
mode:
authorvandebo@chromium.org <vandebo@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-04-06 19:47:17 +0000
committervandebo@chromium.org <vandebo@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-04-06 19:47:17 +0000
commit126a39cfe316baa94d0fa5278df5770c7c3b0a30 (patch)
tree05d307073a328eb385640d2a72be222157252d0d /skia/ext
parentece8a8505d789a77fae45cb0575136040018602b (diff)
downloadchromium_src-126a39cfe316baa94d0fa5278df5770c7c3b0a30.zip
chromium_src-126a39cfe316baa94d0fa5278df5770c7c3b0a30.tar.gz
chromium_src-126a39cfe316baa94d0fa5278df5770c7c3b0a30.tar.bz2
Remove empty header and references to it: platform_canvas_win.h
BUG=NONE TEST=NONE Review URL: http://codereview.chromium.org/6804022 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@80676 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'skia/ext')
-rw-r--r--skia/ext/canvas_paint_linux.h7
-rw-r--r--skia/ext/canvas_paint_mac.h5
-rw-r--r--skia/ext/platform_canvas_win.h10
3 files changed, 5 insertions, 17 deletions
diff --git a/skia/ext/canvas_paint_linux.h b/skia/ext/canvas_paint_linux.h
index 8a63890..6aaae79 100644
--- a/skia/ext/canvas_paint_linux.h
+++ b/skia/ext/canvas_paint_linux.h
@@ -14,10 +14,9 @@
namespace skia {
-// A class designed to translate skia painting into a region in a
-// GdkWindow. This class has been adapted from the class with the same name in
-// platform_canvas_win.h. On construction, it will set up a context for
-// painting into, and on destruction, it will commit it to the GdkWindow.
+// A class designed to translate skia painting into a region in a GdkWindow.
+// On construction, it will set up a context for painting into, and on
+// destruction, it will commit it to the GdkWindow.
template <class T>
class CanvasPaintT : public T {
public:
diff --git a/skia/ext/canvas_paint_mac.h b/skia/ext/canvas_paint_mac.h
index ae1fda8..fe73a8e 100644
--- a/skia/ext/canvas_paint_mac.h
+++ b/skia/ext/canvas_paint_mac.h
@@ -14,9 +14,8 @@
namespace skia {
// A class designed to translate skia painting into a region to the current
-// graphics context. This class has been adapted from the class with the same
-// name in platform_canvas_win.h. On construction, it will set up a context for
-// painting into, and on destruction, it will commit it to the current context.
+// graphics context. On construction, it will set up a context for painting
+// into, and on destruction, it will commit it to the current context.
template <class T>
class CanvasPaintT : public T {
public:
diff --git a/skia/ext/platform_canvas_win.h b/skia/ext/platform_canvas_win.h
deleted file mode 100644
index 9f2cc53..0000000
--- a/skia/ext/platform_canvas_win.h
+++ /dev/null
@@ -1,10 +0,0 @@
-// Copyright (c) 2009 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-
-// TODO(brettw) erase this file. This file is necessary because
-// FontChromiumWin.cpp in WebKit includes it, and I want to avoid having to
-// synchronize the checkins to Chromium and WebKit.
-
-#include "skia/ext/platform_canvas.h"