OLD | NEW |
---|---|
(Empty) | |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 #ifndef UI_BASE_DRAGDROP_BOOKMARK_FORMAT_H_ | |
6 #define UI_BASE_DRAGDROP_BOOKMARK_FORMAT_H_ | |
7 #pragma once | |
8 | |
9 #include "ui/base/ui_export.h" | |
10 | |
11 #if defined(TOOLKIT_VIEWS) | |
12 #include "ui/base/dragdrop/os_exchange_data.h" | |
13 #endif | |
14 | |
15 namespace ui { | |
16 | |
17 // The MIME type for the clipboard format for BookmarkNodeData. | |
18 UI_EXPORT extern const char kClipboardFormatString[]; | |
19 | |
20 #if defined(TOOLKIT_VIEWS) | |
21 // Returns a format used across views for writing bookmark data based on the | |
jam
2011/10/11 01:42:21
1) why is bookmark stuff in ui/base? is this for d
Elliot Glaysher
2011/10/11 17:53:57
This is for drag/dropping bookmarks. I think I kno
| |
22 // mime type from kClipboardFormatString. | |
23 UI_EXPORT ui::OSExchangeData::CustomFormat GetBookmarkCustomFormat(); | |
24 #endif | |
25 | |
26 } // namespace ui | |
27 | |
28 #endif // UI_BASE_DRAGDROP_BOOKMARK_FORMAT_H_ | |
OLD | NEW |