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

Side by Side Diff: ui/views/button_drag_utils.h

Issue 2750253002: Reland 4e4eae4cbe6136b538a: Make download item drags look like bookmark (Closed)
Patch Set: with fix Created 3 years, 9 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef UI_VIEWS_BUTTON_DRAG_UTILS_H_ 5 #ifndef UI_VIEWS_BUTTON_DRAG_UTILS_H_
6 #define UI_VIEWS_BUTTON_DRAG_UTILS_H_ 6 #define UI_VIEWS_BUTTON_DRAG_UTILS_H_
7 7
8 #include "base/strings/string16.h" 8 #include "base/strings/string16.h"
9 #include "ui/views/views_export.h" 9 #include "ui/views/views_export.h"
10 10
(...skipping 14 matching lines...) Expand all
25 25
26 namespace button_drag_utils { 26 namespace button_drag_utils {
27 27
28 // Sets url and title on data as well as setting a suitable image for dragging. 28 // Sets url and title on data as well as setting a suitable image for dragging.
29 // The image looks like that of the bookmark buttons. |press_pt| is optional 29 // The image looks like that of the bookmark buttons. |press_pt| is optional
30 // offset; otherwise, it centers the drag image. 30 // offset; otherwise, it centers the drag image.
31 VIEWS_EXPORT void SetURLAndDragImage(const GURL& url, 31 VIEWS_EXPORT void SetURLAndDragImage(const GURL& url,
32 const base::string16& title, 32 const base::string16& title,
33 const gfx::ImageSkia& icon, 33 const gfx::ImageSkia& icon,
34 const gfx::Point* press_pt, 34 const gfx::Point* press_pt,
35 ui::OSExchangeData* data, 35 const views::Widget& widget,
Evan Stade 2017/03/16 00:03:30 widget isn't allowed to be null and out params are
36 views::Widget* widget); 36 ui::OSExchangeData* data);
37 37
38 // As above, but only sets the image. 38 // As above, but only sets the image.
39 VIEWS_EXPORT void SetDragImage(const GURL& url, 39 VIEWS_EXPORT void SetDragImage(const GURL& url,
40 const base::string16& title, 40 const base::string16& title,
41 const gfx::ImageSkia& icon, 41 const gfx::ImageSkia& icon,
42 const gfx::Point* press_pt, 42 const gfx::Point* press_pt,
43 ui::OSExchangeData* data, 43 const views::Widget& widget,
44 views::Widget* widget); 44 ui::OSExchangeData* data);
45 45
46 } // namespace drag_utils 46 } // namespace drag_utils
47 47
48 #endif // UI_VIEWS_BUTTON_DRAG_UTILS_H_ 48 #endif // UI_VIEWS_BUTTON_DRAG_UTILS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698