summaryrefslogtreecommitdiffstats
path: root/content/port/browser
diff options
context:
space:
mode:
authorpkotwicz@chromium.org <pkotwicz@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-07-09 20:16:59 +0000
committerpkotwicz@chromium.org <pkotwicz@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-07-09 20:16:59 +0000
commitdeb6bb71c8aa5c696d239ceb677331b41c47cab5 (patch)
tree0f05fe270e5e523b310b4f18d3dfa64625dd8d87 /content/port/browser
parent855aa66e700ce072bddfbc5e96b5600f4cd35362 (diff)
downloadchromium_src-deb6bb71c8aa5c696d239ceb677331b41c47cab5.zip
chromium_src-deb6bb71c8aa5c696d239ceb677331b41c47cab5.tar.gz
chromium_src-deb6bb71c8aa5c696d239ceb677331b41c47cab5.tar.bz2
Fix a couple ImageSkia implicit conversion bugs.
Change RenderViewHostDelegateView::StartDragging to pass around an ImageSkia instead of an SkBitmap Bug=133281 Test=Manual R=varunjain, ben TBR=jam Review URL: https://chromiumcodereview.appspot.com/10689124 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@145734 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/port/browser')
-rw-r--r--content/port/browser/render_view_host_delegate_view.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/content/port/browser/render_view_host_delegate_view.h b/content/port/browser/render_view_host_delegate_view.h
index 8a646c4..1fc618d 100644
--- a/content/port/browser/render_view_host_delegate_view.h
+++ b/content/port/browser/render_view_host_delegate_view.h
@@ -17,6 +17,7 @@ struct WebDropData;
struct WebMenuItem;
namespace gfx {
+class ImageSkia;
class Point;
class Rect;
}
@@ -50,7 +51,7 @@ class CONTENT_EXPORT RenderViewHostDelegateView {
// by WebDropData.
virtual void StartDragging(const WebDropData& drop_data,
WebKit::WebDragOperationsMask allowed_ops,
- const SkBitmap& image,
+ const gfx::ImageSkia& image,
const gfx::Point& image_offset) {}
// The page wants to update the mouse cursor during a drag & drop operation.