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

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

Issue 8196001: content: Split web_drag_dest_gtk.cc into chrome/ and content/ parts. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: :( Created 9 years, 2 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
OLDNEW
(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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698