summaryrefslogtreecommitdiffstats
path: root/views/view.cc
diff options
context:
space:
mode:
Diffstat (limited to 'views/view.cc')
-rw-r--r--views/view.cc11
1 files changed, 11 insertions, 0 deletions
diff --git a/views/view.cc b/views/view.cc
index 4adef5b..30a6e74 100644
--- a/views/view.cc
+++ b/views/view.cc
@@ -1238,7 +1238,18 @@ DragController* View::GetDragController() {
return drag_controller_;
}
+bool View::GetDropFormats(
+ int* formats,
+ std::set<OSExchangeData::CustomFormat>* custom_formats) {
+ return false;
+}
+
+bool View::AreDropTypesRequired() {
+ return false;
+}
+
bool View::CanDrop(const OSExchangeData& data) {
+ // TODO(sky): when I finish up migration, this should default to true.
return false;
}