Index: chrome/browser/download/download_util.cc |
diff --git a/chrome/browser/download/download_util.cc b/chrome/browser/download/download_util.cc |
index c52780b926d1761615e84e6114643af5ef247174..e7650d5112ffd5afa4910ed335b85228011f26fe 100644 |
--- a/chrome/browser/download/download_util.cc |
+++ b/chrome/browser/download/download_util.cc |
@@ -287,6 +287,12 @@ void DragDownload(const DownloadItem* download, |
widget->DoDrag(data, DragDropTypes::DRAG_COPY | DragDropTypes::DRAG_LINK); |
#endif // OS_WIN |
} |
-#endif |
+#elif defined(OS_LINUX) |
+void DragDownload(const DownloadItem* download, |
Evan Stade
2009/09/25 01:07:23
I don't understand why this exists. Seems to be fo
|
+ SkBitmap* icon, |
+ gfx::NativeView view) { |
+ NOTIMPLEMENTED(); |
+} |
+#endif // OS_LINUX |
} // namespace download_util |