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

Unified Diff: ui/gfx/native_theme_win.h

Issue 6783023: Eliminate skia::PlatformCanvas - Step 1 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 8 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
Index: ui/gfx/native_theme_win.h
===================================================================
--- ui/gfx/native_theme_win.h (revision 80714)
+++ ui/gfx/native_theme_win.h (working copy)
@@ -19,9 +19,7 @@
#include "base/basictypes.h"
#include "third_party/skia/include/core/SkColor.h"
-namespace skia {
-class PlatformCanvas;
-} // namespace skia
+class SkCanvas;
namespace gfx {
@@ -253,7 +251,7 @@
int classic_state,
RECT* target_rect,
RECT* align_rect,
- skia::PlatformCanvas* canvas) const;
+ SkCanvas* canvas) const;
// This method is deprecated and will be removed in the near future.
// Paints a scrollbar thumb or gripper.
@@ -296,7 +294,7 @@
int state_id,
int classic_state,
RECT* rect,
- skia::PlatformCanvas* canvas) const;
+ SkCanvas* canvas) const;
// This method is deprecated and will be removed in the near future.
HRESULT PaintProgressBar(HDC hdc,
@@ -304,7 +302,7 @@
RECT* value_rect,
bool determinate,
double animated_seconds,
- skia::PlatformCanvas* canvas) const;
+ SkCanvas* canvas) const;
private:
NativeThemeWin();

Powered by Google App Engine
This is Rietveld 408576698