summaryrefslogtreecommitdiffstats
path: root/chrome/browser/tab_contents/web_drag_source.cc
diff options
context:
space:
mode:
authorben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-01-15 00:59:16 +0000
committerben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-01-15 00:59:16 +0000
commitf3ec774a2c177d3c6845553d3bf9735a7b8a5907 (patch)
treeed09ccf69300383bd4b2e8ac7c8b9d1bdeead07b /chrome/browser/tab_contents/web_drag_source.cc
parentbb515eda39129537a089a062c3db3152e63f24d9 (diff)
downloadchromium_src-f3ec774a2c177d3c6845553d3bf9735a7b8a5907.zip
chromium_src-f3ec774a2c177d3c6845553d3bf9735a7b8a5907.tar.gz
chromium_src-f3ec774a2c177d3c6845553d3bf9735a7b8a5907.tar.bz2
Move a bunch of TabContents related files into a tab_contents subdir
Review URL: http://codereview.chromium.org/18250 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@8058 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/tab_contents/web_drag_source.cc')
-rw-r--r--chrome/browser/tab_contents/web_drag_source.cc45
1 files changed, 45 insertions, 0 deletions
diff --git a/chrome/browser/tab_contents/web_drag_source.cc b/chrome/browser/tab_contents/web_drag_source.cc
new file mode 100644
index 0000000..b47913b
--- /dev/null
+++ b/chrome/browser/tab_contents/web_drag_source.cc
@@ -0,0 +1,45 @@
+// Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include <atlbase.h>
+#include <atlapp.h>
+#include <atlmisc.h>
+
+#include "chrome/browser/tab_contents/web_drag_source.h"
+
+#include "chrome/browser/render_view_host.h"
+
+namespace {
+
+static void GetCursorPositions(HWND hwnd, CPoint* client, CPoint* screen) {
+ GetCursorPos(screen);
+ *client = *screen;
+ ScreenToClient(hwnd, client);
+}
+
+} // namespace
+///////////////////////////////////////////////////////////////////////////////
+// WebDragSource, public:
+
+WebDragSource::WebDragSource(HWND source_hwnd,
+ RenderViewHost* render_view_host)
+ : BaseDragSource(),
+ source_hwnd_(source_hwnd),
+ render_view_host_(render_view_host) {
+}
+
+void WebDragSource::OnDragSourceDrop() {
+ CPoint client;
+ CPoint screen;
+ GetCursorPositions(source_hwnd_, &client, &screen);
+ render_view_host_->DragSourceEndedAt(client.x, client.y, screen.x, screen.y);
+}
+
+void WebDragSource::OnDragSourceMove() {
+ CPoint client;
+ CPoint screen;
+ GetCursorPositions(source_hwnd_, &client, &screen);
+ render_view_host_->DragSourceMovedTo(client.x, client.y, screen.x, screen.y);
+}
+