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

Side by Side Diff: ui/base/dragdrop/cocoa_dnd_util.h

Issue 93863005: ui: Rename ui_export.h to ui_base_export.h (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: UI_BASE_IMPLEMENTATION Created 6 years, 11 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 | Annotate | Revision Log
« no previous file with comments | « ui/base/device_form_factor.h ('k') | ui/base/dragdrop/download_file_interface.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_BASE_DRAGDROP_MAC_DND_UTIL_H_ 5 #ifndef UI_BASE_DRAGDROP_MAC_DND_UTIL_H_
6 #define UI_BASE_DRAGDROP_MAC_DND_UTIL_H_ 6 #define UI_BASE_DRAGDROP_MAC_DND_UTIL_H_
7 7
8 #import <Cocoa/Cocoa.h> 8 #import <Cocoa/Cocoa.h>
9 9
10 #include <vector> 10 #include <vector>
11 11
12 #include "base/strings/string16.h" 12 #include "base/strings/string16.h"
13 #include "ui/base/ui_export.h" 13 #include "ui/base/ui_base_export.h"
14 14
15 class GURL; 15 class GURL;
16 16
17 namespace ui { 17 namespace ui {
18 18
19 // Dummy data type that Chrome places in dragging pasteboards. There is never 19 // Dummy data type that Chrome places in dragging pasteboards. There is never
20 // any data associated with this type; it's only used to ensure that Chrome 20 // any data associated with this type; it's only used to ensure that Chrome
21 // supports any drag initiated inside of Chrome, whether or not data has been 21 // supports any drag initiated inside of Chrome, whether or not data has been
22 // associated with it. 22 // associated with it.
23 UI_EXPORT extern NSString* const kChromeDragDummyPboardType; 23 UI_BASE_EXPORT extern NSString* const kChromeDragDummyPboardType;
24 24
25 // Mail.app and TextEdit accept drags that have both HTML and image flavors on 25 // Mail.app and TextEdit accept drags that have both HTML and image flavors on
26 // them, but don't process them correctly <http://crbug.com/55879>. Therefore, 26 // them, but don't process them correctly <http://crbug.com/55879>. Therefore,
27 // if there is an image flavor, don't put the HTML data on as HTML, but rather 27 // if there is an image flavor, don't put the HTML data on as HTML, but rather
28 // put it on as this Chrome-only flavor. External apps won't see HTML but 28 // put it on as this Chrome-only flavor. External apps won't see HTML but
29 // Chrome will know enough to read it as HTML. <http://crbug.com/55879> 29 // Chrome will know enough to read it as HTML. <http://crbug.com/55879>
30 UI_EXPORT extern NSString* const kChromeDragImageHTMLPboardType; 30 UI_BASE_EXPORT extern NSString* const kChromeDragImageHTMLPboardType;
31 31
32 // Populates the |url| and |title| with URL data in |pboard|. There may be more 32 // Populates the |url| and |title| with URL data in |pboard|. There may be more
33 // than one, but we only handle dropping the first. |url| must not be |NULL|; 33 // than one, but we only handle dropping the first. |url| must not be |NULL|;
34 // |title| is an optional parameter. Returns |YES| if URL data was obtained from 34 // |title| is an optional parameter. Returns |YES| if URL data was obtained from
35 // the pasteboard, |NO| otherwise. If |convert_filenames| is |YES|, the function 35 // the pasteboard, |NO| otherwise. If |convert_filenames| is |YES|, the function
36 // will also attempt to convert filenames in |pboard| to file URLs. 36 // will also attempt to convert filenames in |pboard| to file URLs.
37 UI_EXPORT BOOL PopulateURLAndTitleFromPasteboard(GURL* url, 37 UI_BASE_EXPORT BOOL PopulateURLAndTitleFromPasteboard(GURL* url,
38 base::string16* title, 38 base::string16* title,
39 NSPasteboard* pboard, 39 NSPasteboard* pboard,
40 BOOL convert_filenames); 40 BOOL convert_filenames);
41 41
42 } // namespace ui 42 } // namespace ui
43 43
44 #endif // UI_BASE_DRAGDROP_MAC_DND_UTIL_H_ 44 #endif // UI_BASE_DRAGDROP_MAC_DND_UTIL_H_
OLDNEW
« no previous file with comments | « ui/base/device_form_factor.h ('k') | ui/base/dragdrop/download_file_interface.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698