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

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

Issue 1964283002: MacViews: Implemented Drag & Drop (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix for dcheng Created 4 years, 6 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_BASE_DRAGDROP_OS_EXCHANGE_DATA_H_ 5 #ifndef UI_BASE_DRAGDROP_OS_EXCHANGE_DATA_H_
6 #define UI_BASE_DRAGDROP_OS_EXCHANGE_DATA_H_ 6 #define UI_BASE_DRAGDROP_OS_EXCHANGE_DATA_H_
7 7
8 #include <memory> 8 #include <memory>
9 #include <set> 9 #include <set>
10 #include <string> 10 #include <string>
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
123 virtual bool HasFileContents() const = 0; 123 virtual bool HasFileContents() const = 0;
124 virtual void SetDownloadFileInfo(const DownloadFileInfo& download) = 0; 124 virtual void SetDownloadFileInfo(const DownloadFileInfo& download) = 0;
125 #endif 125 #endif
126 126
127 #if defined(USE_AURA) 127 #if defined(USE_AURA)
128 virtual void SetHtml(const base::string16& html, const GURL& base_url) = 0; 128 virtual void SetHtml(const base::string16& html, const GURL& base_url) = 0;
129 virtual bool GetHtml(base::string16* html, GURL* base_url) const = 0; 129 virtual bool GetHtml(base::string16* html, GURL* base_url) const = 0;
130 virtual bool HasHtml() const = 0; 130 virtual bool HasHtml() const = 0;
131 #endif 131 #endif
132 132
133 #if defined(USE_AURA) 133 #if defined(USE_AURA) || defined(OS_MACOSX)
134 virtual void SetDragImage(const gfx::ImageSkia& image, 134 virtual void SetDragImage(const gfx::ImageSkia& image,
135 const gfx::Vector2d& cursor_offset) = 0; 135 const gfx::Vector2d& cursor_offset) = 0;
136 virtual const gfx::ImageSkia& GetDragImage() const = 0; 136 virtual const gfx::ImageSkia& GetDragImage() const = 0;
137 virtual const gfx::Vector2d& GetDragImageOffset() const = 0; 137 virtual const gfx::Vector2d& GetDragImageOffset() const = 0;
138 #endif 138 #endif
139 }; 139 };
140 140
141 // Creates the platform specific Provider. 141 // Creates the platform specific Provider.
142 static Provider* CreateProvider(); 142 static Provider* CreateProvider();
143 143
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
230 private: 230 private:
231 // Provides the actual data. 231 // Provides the actual data.
232 std::unique_ptr<Provider> provider_; 232 std::unique_ptr<Provider> provider_;
233 233
234 DISALLOW_COPY_AND_ASSIGN(OSExchangeData); 234 DISALLOW_COPY_AND_ASSIGN(OSExchangeData);
235 }; 235 };
236 236
237 } // namespace ui 237 } // namespace ui
238 238
239 #endif // UI_BASE_DRAGDROP_OS_EXCHANGE_DATA_H_ 239 #endif // UI_BASE_DRAGDROP_OS_EXCHANGE_DATA_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698