summaryrefslogtreecommitdiffstats
path: root/views/widget/root_view.h
diff options
context:
space:
mode:
Diffstat (limited to 'views/widget/root_view.h')
-rw-r--r--views/widget/root_view.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/views/widget/root_view.h b/views/widget/root_view.h
index 8e8d467..b3c43d8 100644
--- a/views/widget/root_view.h
+++ b/views/widget/root_view.h
@@ -18,7 +18,6 @@ typedef struct _GdkEventExpose GdkEventExpose;
namespace views {
class PaintTask;
-class RootViewDropTarget;
class Widget;
/////////////////////////////////////////////////////////////////////////////
@@ -92,14 +91,6 @@ class RootView : public View,
virtual void OnMouseMoved(const MouseEvent& e);
virtual void SetMouseHandler(View* new_mouse_handler);
- // Invoked when the Widget has been fully initialized.
- // At the time the constructor is invoked the Widget may not be completely
- // initialized, when this method is invoked, it is.
- void OnWidgetCreated();
-
- // Invoked prior to the Widget being destroyed.
- void OnWidgetDestroyed();
-
// Invoked By the Widget if the mouse drag is interrupted by
// the system. Invokes OnMouseReleased with a value of true for canceled.
void ProcessMouseDragCanceled();
@@ -326,11 +317,6 @@ class RootView : public View,
// wrapped inside native components, and is used for the focus traversal.
View* focus_traversable_parent_view_;
-#if defined(OS_WIN)
- // Handles dnd for us.
- scoped_refptr<RootViewDropTarget> drop_target_;
-#endif
-
// Storage of strings needed for accessibility.
std::wstring accessible_name_;