Searched refs:OSExchangeData (Results 26 - 50 of 99) sorted by relevance

1234

/external/chromium_org/ui/base/dragdrop/
H A Dos_exchange_data_provider_aurax11.h32 // OSExchangeData::Provider implementation for aura on linux.
34 : public OSExchangeData::Provider,
63 // Overridden from OSExchangeData::Provider:
71 virtual void SetPickledData(const OSExchangeData::CustomFormat& format,
74 virtual bool GetURLAndTitle(OSExchangeData::FilenameToURLPolicy policy,
79 virtual bool GetPickledData(const OSExchangeData::CustomFormat& format,
82 virtual bool HasURL(OSExchangeData::FilenameToURLPolicy policy) const
85 virtual bool HasCustomFormat(const OSExchangeData::CustomFormat& format) const
106 typedef std::map<OSExchangeData::CustomFormat, Pickle> PickleData;
H A Dos_exchange_data_provider_win.h128 : public OSExchangeData::Provider {
137 static DataObjectImpl* GetDataObjectImpl(const OSExchangeData& data);
138 static IDataObject* GetIDataObject(const OSExchangeData& data);
140 const OSExchangeData& data);
150 // OSExchangeData::Provider methods.
158 virtual void SetPickledData(const OSExchangeData::CustomFormat& format,
165 virtual bool GetURLAndTitle(OSExchangeData::FilenameToURLPolicy policy,
170 virtual bool GetPickledData(const OSExchangeData::CustomFormat& format,
176 virtual bool HasURL(OSExchangeData::FilenameToURLPolicy policy) const;
181 const OSExchangeData
[all...]
H A Dos_exchange_data.h38 // OSExchangeData
48 // not use OSExchangeData. As such, file contents and html support is only
50 class UI_BASE_EXPORT OSExchangeData { class in namespace:ui
85 // Provider defines the platform specific part of OSExchangeData that
148 OSExchangeData();
149 // Creates an OSExchangeData with the specified provider. OSExchangeData
151 explicit OSExchangeData(Provider* provider);
153 ~OSExchangeData();
165 // These functions add data to the OSExchangeData objec
[all...]
H A Ddrag_utils.cc87 ui::OSExchangeData* data_object) {
100 ui::OSExchangeData* data_object) {
/external/chromium_org/ui/views/widget/
H A Ddrop_helper.cc29 int DropHelper::OnDragOver(const OSExchangeData& data,
50 int DropHelper::OnDrop(const OSExchangeData& data,
73 const OSExchangeData& data,
81 const OSExchangeData& data,
104 std::set<OSExchangeData::CustomFormat> custom_formats;
121 void DropHelper::NotifyDragEntered(const OSExchangeData& data,
136 int DropHelper::NotifyDragOver(const OSExchangeData& data,
/external/chromium_org/components/bookmarks/browser/
H A Dbookmark_node_data_unittest.cc57 ui::OSExchangeData::Provider* CloneProvider(const ui::OSExchangeData& data) {
71 ui::OSExchangeData data;
73 EXPECT_FALSE(drag_data.Read(ui::OSExchangeData(CloneProvider(data))));
83 ui::OSExchangeData data;
87 EXPECT_TRUE(drag_data.Read(ui::OSExchangeData(CloneProvider(data))));
113 ui::OSExchangeData data;
117 ui::OSExchangeData data2(CloneProvider(data));
139 ui::OSExchangeData::CONVERT_FILENAMES, &read_url, &read_title));
160 ui::OSExchangeData dat
[all...]
H A Dbookmark_node_data.h98 static const ui::OSExchangeData::CustomFormat& GetBookmarkCustomFormat();
123 ui::OSExchangeData* data) const;
126 bool Read(const ui::OSExchangeData& data);
/external/chromium_org/ui/views/widget/desktop_aura/
H A Ddesktop_drop_target_win.cc18 using ui::OSExchangeData;
39 scoped_ptr<OSExchangeData> data;
53 scoped_ptr<OSExchangeData> data;
71 scoped_ptr<OSExchangeData> data;
94 scoped_ptr<OSExchangeData>* data,
119 data->reset(new OSExchangeData(new OSExchangeDataProviderWin(data_object)));
H A Ddesktop_drop_target_win.h20 class OSExchangeData;
59 scoped_ptr<ui::OSExchangeData>* data,
H A Ddesktop_drag_drop_client_aurax11.h39 class OSExchangeData;
84 const ui::OSExchangeData& data,
151 scoped_ptr<ui::OSExchangeData>* data,
/external/chromium_org/chrome/browser/ui/aura/tab_contents/
H A Dweb_drag_bookmark_handler_aura.h34 virtual void OnReceiveDragData(const ui::OSExchangeData& data) OVERRIDE;
/external/chromium_org/ui/views/controls/menu/
H A Dmenu_delegate.h20 using ui::OSExchangeData;
165 virtual bool CanDrop(MenuItemView* menu, const OSExchangeData& data);
171 std::set<OSExchangeData::CustomFormat>* custom_formats);
201 virtual void WriteDragData(MenuItemView* sender, OSExchangeData* data);
H A Dmenu_delegate.cc96 bool MenuDelegate::CanDrop(MenuItemView* menu, const OSExchangeData& data) {
103 std::set<OSExchangeData::CustomFormat>* custom_formats) {
129 void MenuDelegate::WriteDragData(MenuItemView* sender, OSExchangeData* data) {
/external/chromium_org/ui/views/
H A Ddrag_utils_aura.cc14 const ui::OSExchangeData& data,
/external/chromium_org/chrome/browser/ui/views/frame/
H A Dbrowser_root_view.cc35 std::set<ui::OSExchangeData::CustomFormat>* custom_formats) {
37 *formats = ui::OSExchangeData::URL | ui::OSExchangeData::STRING;
47 bool BrowserRootView::CanDrop(const ui::OSExchangeData& data) {
52 if (data.HasURL(ui::OSExchangeData::CONVERT_FILENAMES))
95 // Extract the URL and create a new ui::OSExchangeData containing the URL. We
100 ui::OSExchangeData mapped_data;
102 ui::OSExchangeData::CONVERT_FILENAMES, &url, &title) ||
108 // passing through an ui::OSExchangeData with nothing in it. We need to do
181 const ui::OSExchangeData
[all...]
/external/chromium_org/chrome/browser/ui/views/toolbar/
H A Dwrench_toolbar_button.h39 std::set<ui::OSExchangeData::CustomFormat>* custom_formats) OVERRIDE;
41 virtual bool CanDrop(const ui::OSExchangeData& data) OVERRIDE;
H A Dhome_button.cc151 std::set<OSExchangeData::CustomFormat>* custom_formats) {
152 *formats = ui::OSExchangeData::URL;
156 bool HomeButton::CanDrop(const OSExchangeData& data) {
157 return data.HasURL(ui::OSExchangeData::CONVERT_FILENAMES);
169 ui::OSExchangeData::CONVERT_FILENAMES, &new_homepage_url, &title) &&
H A Dwrench_toolbar_button.cc58 int* formats, std::set<ui::OSExchangeData::CustomFormat>* custom_formats) {
68 bool WrenchToolbarButton::CanDrop(const ui::OSExchangeData& data) {
H A Dwrench_menu.h75 std::set<ui::OSExchangeData::CustomFormat>* custom_formats) OVERRIDE;
78 const ui::OSExchangeData& data) OVERRIDE;
91 ui::OSExchangeData* data) OVERRIDE;
/external/chromium_org/chrome/browser/ui/views/
H A Dmenu_view_drag_and_drop_test.cc40 ui::OSExchangeData* data) OVERRIDE;
56 ui::OSExchangeData* data) {
76 std::set<OSExchangeData::CustomFormat>* custom_formats) OVERRIDE;
78 virtual bool CanDrop(const OSExchangeData& data) OVERRIDE;
114 int* formats, std::set<OSExchangeData::CustomFormat>* custom_formats) {
115 *formats = ui::OSExchangeData::STRING;
123 bool TestTargetView::CanDrop(const OSExchangeData& data) {
167 std::set<ui::OSExchangeData::CustomFormat>* custom_formats) OVERRIDE;
170 const ui::OSExchangeData& data) OVERRIDE;
179 ui::OSExchangeData* dat
[all...]
/external/chromium_org/chrome/browser/ui/views/extensions/
H A Dbrowser_action_overflow_menu_controller.h70 std::set<ui::OSExchangeData::CustomFormat>* custom_formats) OVERRIDE;
73 const ui::OSExchangeData& data) OVERRIDE;
84 ui::OSExchangeData* data) OVERRIDE;
/external/chromium_org/ash/drag_drop/
H A Ddrag_drop_interactive_uitest.cc35 OSExchangeData* data)OVERRIDE {
51 std::set<OSExchangeData::CustomFormat>* custom_formats) OVERRIDE {
52 *formats = ui::OSExchangeData::STRING;
58 virtual bool CanDrop(const OSExchangeData& data) OVERRIDE {
H A Ddrag_drop_controller.h47 const ui::OSExchangeData& data,
100 const ui::OSExchangeData* drag_data_;
/external/chromium_org/chrome/browser/ui/views/bookmarks/
H A Dbookmark_menu_controller_views.h26 class OSExchangeData;
89 std::set<ui::OSExchangeData::CustomFormat>* custom_formats) OVERRIDE;
92 const ui::OSExchangeData& data) OVERRIDE;
106 ui::OSExchangeData* data) OVERRIDE;
H A Dbookmark_menu_delegate.h28 class OSExchangeData;
106 std::set<ui::OSExchangeData::CustomFormat>* custom_formats);
108 bool CanDrop(views::MenuItemView* menu, const ui::OSExchangeData& data);
120 void WriteDragData(views::MenuItemView* sender, ui::OSExchangeData* data);

Completed in 2918 milliseconds

1234