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

Side by Side Diff: webkit/port/platform/graphics/skia/public/VectorDevice.h

Issue 11244: Move PlatformCanvas and PlatformDevice from base/gfx to webkit/port. I left h... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 12 years, 1 month 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 unified diff | Download patch | Annotate | Revision Log
Property Changes:
Added: svn:mergeinfo
Merged /branches/chrome_webkit_merge_branch/base/gfx/vector_device.h:r69-2775
OLDNEW
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef BASE_GFX_VECTOR_DEVICE_H_ 5 #ifndef VectorDevice_h
6 #define BASE_GFX_VECTOR_DEVICE_H_ 6 #define VectorDevice_h
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "base/gfx/platform_device_win.h" 9 #include "base/gfx/platform_device_win.h"
10 #include "SkMatrix.h" 10 #include "SkMatrix.h"
11 #include "SkRegion.h" 11 #include "SkRegion.h"
12 12
13 namespace gfx { 13 namespace gfx {
14 14
15 // A device is basically a wrapper around SkBitmap that provides a surface for 15 // A device is basically a wrapper around SkBitmap that provides a surface for
16 // SkCanvas to draw into. This specific device is not not backed by a surface 16 // SkCanvas to draw into. This specific device is not not backed by a surface
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
108 HGDIOBJ previous_brush_; 108 HGDIOBJ previous_brush_;
109 109
110 // Previously selected pen before the current drawing. 110 // Previously selected pen before the current drawing.
111 HGDIOBJ previous_pen_; 111 HGDIOBJ previous_pen_;
112 112
113 DISALLOW_COPY_AND_ASSIGN(VectorDevice); 113 DISALLOW_COPY_AND_ASSIGN(VectorDevice);
114 }; 114 };
115 115
116 } // namespace gfx 116 } // namespace gfx
117 117
118 #endif // BASE_GFX_VECTOR_DEVICE_H_ 118 #endif // VectorDevice_h
119 119
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698