Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(27)

Unified Diff: chrome/browser/ui/gtk/bookmarks/bookmark_drag_drop_gtk.cc

Issue 231733005: Delete the GTK+ port of Chrome. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remerge to ToT Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/gtk/bookmarks/bookmark_drag_drop_gtk.cc
diff --git a/chrome/browser/ui/gtk/bookmarks/bookmark_drag_drop_gtk.cc b/chrome/browser/ui/gtk/bookmarks/bookmark_drag_drop_gtk.cc
deleted file mode 100644
index 90a7d4ca79cbec078f2923c8d43e00308def8d55..0000000000000000000000000000000000000000
--- a/chrome/browser/ui/gtk/bookmarks/bookmark_drag_drop_gtk.cc
+++ /dev/null
@@ -1,62 +0,0 @@
-// Copyright 2012 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 "chrome/browser/ui/bookmarks/bookmark_drag_drop.h"
-
-#include <vector>
-
-#include "base/compiler_specific.h"
-#include "chrome/browser/ui/gtk/bookmarks/bookmark_utils_gtk.h"
-#include "chrome/browser/ui/gtk/custom_drag.h"
-#include "ui/base/dragdrop/drag_drop_types.h"
-
-namespace {
-
-const GdkDragAction kBookmarkDragAction =
- static_cast<GdkDragAction>(GDK_ACTION_COPY | GDK_ACTION_MOVE);
-
-// Encapsulates functionality for drags of one or more bookmarks.
-class BookmarkDrag : public CustomDrag {
- public:
- BookmarkDrag(Profile* profile, const std::vector<const BookmarkNode*>& nodes);
-
- private:
- virtual ~BookmarkDrag() {}
-
- virtual void OnDragDataGet(GtkWidget* widget,
- GdkDragContext* context,
- GtkSelectionData* selection_data,
- guint target_type,
- guint time) OVERRIDE {
- WriteBookmarksToSelection(nodes_, selection_data, target_type, profile_);
- }
-
- Profile* profile_;
- std::vector<const BookmarkNode*> nodes_;
-
- DISALLOW_COPY_AND_ASSIGN(BookmarkDrag);
-};
-
-BookmarkDrag::BookmarkDrag(Profile* profile,
- const std::vector<const BookmarkNode*>& nodes)
- : CustomDrag(NULL, GetCodeMask(false), kBookmarkDragAction),
- profile_(profile),
- nodes_(nodes) {}
-
-} // namespace
-
-namespace chrome {
-
-void DragBookmarks(Profile* profile,
- const std::vector<const BookmarkNode*>& nodes,
- gfx::NativeView view,
- ui::DragDropTypes::DragEventSource source) {
- DCHECK(!nodes.empty());
-
- // This starts the drag process, the lifetime of this object is tied to the
- // system drag.
- new BookmarkDrag(profile, nodes);
-}
-
-} // namespace chrome

Powered by Google App Engine
This is Rietveld 408576698