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

Unified Diff: ui/gfx/blit.h

Issue 23498059: Remove last dependencies on ui/base from ui/gfx (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix DEPS file Created 7 years, 3 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/blit.h
diff --git a/ui/gfx/blit.h b/ui/gfx/blit.h
index f0668172c052c753c15094fee8c242c8c00e0746..049b306d7ec3d5c58cdd0d72d8e58c0a97acc2d4 100644
--- a/ui/gfx/blit.h
+++ b/ui/gfx/blit.h
@@ -17,25 +17,25 @@ class Rect;
class Vector2d;
// Blits a rectangle from the source context into the destination context.
-UI_EXPORT void BlitContextToContext(NativeDrawingContext dst_context,
+GFX_EXPORT void BlitContextToContext(NativeDrawingContext dst_context,
const Rect& dst_rect,
sky 2013/09/24 19:11:40 nit: indent one more here and other places in this
NativeDrawingContext src_context,
const Point& src_origin);
// Blits a rectangle from the source context into the destination canvas.
-UI_EXPORT void BlitContextToCanvas(SkCanvas *dst_canvas,
+GFX_EXPORT void BlitContextToCanvas(SkCanvas *dst_canvas,
const Rect& dst_rect,
NativeDrawingContext src_context,
const Point& src_origin);
// Blits a rectangle from the source canvas into the destination context.
-UI_EXPORT void BlitCanvasToContext(NativeDrawingContext dst_context,
+GFX_EXPORT void BlitCanvasToContext(NativeDrawingContext dst_context,
const Rect& dst_rect,
SkCanvas *src_canvas,
const Point& src_origin);
// Blits a rectangle from the source canvas into the destination canvas.
-UI_EXPORT void BlitCanvasToCanvas(SkCanvas *dst_canvas,
+GFX_EXPORT void BlitCanvasToCanvas(SkCanvas *dst_canvas,
const Rect& dst_rect,
SkCanvas *src_canvas,
const Point& src_origin);
@@ -43,7 +43,7 @@ UI_EXPORT void BlitCanvasToCanvas(SkCanvas *dst_canvas,
// Scrolls the given subset of the given canvas by the given offset.
// The canvas should not have a clip or a transform applied, since platforms
// may implement those operations differently.
-UI_EXPORT void ScrollCanvas(SkCanvas* canvas,
+GFX_EXPORT void ScrollCanvas(SkCanvas* canvas,
const Rect& clip,
const Vector2d& offset);
« no previous file with comments | « ui/gfx/android/java_bitmap.h ('k') | ui/gfx/box_f.h » ('j') | ui/gfx/color_analysis.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698