diff options
author | estade@chromium.org <estade@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-03-17 01:54:52 +0000 |
---|---|---|
committer | estade@chromium.org <estade@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-03-17 01:54:52 +0000 |
commit | cc9858559216b315ef95415396f612109c6ef5f3 (patch) | |
tree | fea31e8f9545e7439c161b55d974e181d2ea2a8c /chrome | |
parent | 42b94496717c8a7ddc9deef7ee0d7b8466e4c2fe (diff) | |
download | chromium_src-cc9858559216b315ef95415396f612109c6ef5f3.zip chromium_src-cc9858559216b315ef95415396f612109c6ef5f3.tar.gz chromium_src-cc9858559216b315ef95415396f612109c6ef5f3.tar.bz2 |
Fix chromeos build
BUG=none
TEST=build works again
Review URL: http://codereview.chromium.org/1051002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@41803 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome')
-rw-r--r-- | chrome/browser/chromeos/app_launcher.cc | 5 | ||||
-rw-r--r-- | chrome/browser/chromeos/app_launcher.h | 6 |
2 files changed, 9 insertions, 2 deletions
diff --git a/chrome/browser/chromeos/app_launcher.cc b/chrome/browser/chromeos/app_launcher.cc index 43755b5c..a43bb15 100644 --- a/chrome/browser/chromeos/app_launcher.cc +++ b/chrome/browser/chromeos/app_launcher.cc @@ -34,6 +34,7 @@ #include "chrome/browser/tab_contents/render_view_host_delegate_helper.h" #include "chrome/browser/tab_contents/tab_contents.h" #include "chrome/browser/views/bubble_border.h" +#include "gfx/point.h" #include "grit/app_resources.h" #include "grit/generated_resources.h" #include "grit/theme_resources.h" @@ -469,7 +470,9 @@ void AppLauncher::ShowCreatedWindow(int route_id, } void AppLauncher::StartDragging(const WebDropData& drop_data, - WebKit::WebDragOperationsMask allowed_ops) { + WebKit::WebDragOperationsMask allowed_ops, + const SkBitmap& image, + const gfx::Point& image_offset) { // We're not going to do any drag & drop, but we have to tell the renderer the // drag & drop ended, othewise the renderer thinks the drag operation is // underway and mouse events won't work. diff --git a/chrome/browser/chromeos/app_launcher.h b/chrome/browser/chromeos/app_launcher.h index f9fbdbc..f6497d8 100644 --- a/chrome/browser/chromeos/app_launcher.h +++ b/chrome/browser/chromeos/app_launcher.h @@ -19,8 +19,10 @@ class Browser; class RenderWidgetHostViewGtk; class SiteInstance; +class SkBitmap; namespace gfx { +class Point; class Size; } namespace views { @@ -168,7 +170,9 @@ class AppLauncher : public RenderViewHostDelegate, const gfx::Rect& initial_pos) {} virtual void ShowContextMenu(const ContextMenuParams& params) {} virtual void StartDragging(const WebDropData& drop_data, - WebKit::WebDragOperationsMask allowed_ops); + WebKit::WebDragOperationsMask allowed_ops, + const SkBitmap& image, + const gfx::Point& image_offset); virtual void UpdateDragCursor(WebKit::WebDragOperation operation) {} virtual void GotFocus() {} virtual void TakeFocus(bool reverse) {} |