Index: ui/base/dragdrop/drag_utils.h |
diff --git a/ui/base/dragdrop/drag_utils.h b/ui/base/dragdrop/drag_utils.h |
index d31c628e53e2d86ecca7d56a8e490982dbc1ee8c..5b7235fbdfcfc907b98d874c189cb2aa5d141423 100644 |
--- a/ui/base/dragdrop/drag_utils.h |
+++ b/ui/base/dragdrop/drag_utils.h |
@@ -8,7 +8,7 @@ |
#include <string> |
#include "base/files/file_path.h" |
-#include "ui/base/ui_export.h" |
+#include "ui/base/ui_base_export.h" |
class GURL; |
@@ -30,25 +30,25 @@ namespace drag_utils { |
// Chrome (via the download manager, for example). The drag image is set into |
// the supplied data_object. 'file_name' can be a full path, but the directory |
// portion will be truncated in the drag image. |
-UI_EXPORT void CreateDragImageForFile(const base::FilePath& file_name, |
- const gfx::ImageSkia* icon, |
- ui::OSExchangeData* data_object); |
+UI_BASE_EXPORT void CreateDragImageForFile(const base::FilePath& file_name, |
+ const gfx::ImageSkia* icon, |
+ ui::OSExchangeData* data_object); |
// Sets the drag image on data_object from the supplied canvas. width/height |
// are the size of the image to use, and the offsets give the location of |
// the hotspot for the drag image. |
-UI_EXPORT void SetDragImageOnDataObject(const gfx::Canvas& canvas, |
- const gfx::Size& size, |
- const gfx::Vector2d& cursor_offset, |
- ui::OSExchangeData* data_object); |
+UI_BASE_EXPORT void SetDragImageOnDataObject(const gfx::Canvas& canvas, |
+ const gfx::Size& size, |
+ const gfx::Vector2d& cursor_offset, |
+ ui::OSExchangeData* data_object); |
// Sets the drag image on data_object from the supplied ImageSkia. width/height |
// are the size of the image to use, and the offsets give the location of |
// the hotspot for the drag image. |
-UI_EXPORT void SetDragImageOnDataObject(const gfx::ImageSkia& image_skia, |
- const gfx::Size& size, |
- const gfx::Vector2d& cursor_offset, |
- ui::OSExchangeData* data_object); |
+UI_BASE_EXPORT void SetDragImageOnDataObject(const gfx::ImageSkia& image_skia, |
+ const gfx::Size& size, |
+ const gfx::Vector2d& cursor_offset, |
+ ui::OSExchangeData* data_object); |
} // namespace drag_utils |