| OLD | NEW |
| 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> |
| 11 | 11 |
| 12 #include "build/build_config.h" | 12 #include "build/build_config.h" |
| 13 | 13 |
| 14 #if defined(OS_WIN) | 14 #if defined(OS_WIN) |
| 15 #include <objidl.h> | 15 #include <objidl.h> |
| 16 #endif | 16 #endif |
| 17 | 17 |
| 18 #include "base/files/file_path.h" | 18 #include "base/files/file_path.h" |
| 19 #include "base/macros.h" | 19 #include "base/macros.h" |
| 20 #include "ui/base/clipboard/clipboard.h" | 20 #include "ui/base/clipboard/clipboard.h" |
| 21 #include "ui/base/dragdrop/download_file_interface.h" | 21 #include "ui/base/dragdrop/download_file_interface.h" |
| 22 #include "ui/base/ui_base_export.h" | 22 #include "ui/base/ui_base_export.h" |
| 23 #include "ui/events/event.h" |
| 23 | 24 |
| 24 class GURL; | 25 class GURL; |
| 25 | 26 |
| 26 namespace base { | 27 namespace base { |
| 27 class Pickle; | 28 class Pickle; |
| 28 } | 29 } |
| 29 | 30 |
| 30 namespace gfx { | 31 namespace gfx { |
| 31 class ImageSkia; | 32 class ImageSkia; |
| 32 class Vector2d; | 33 class Vector2d; |
| (...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 123 virtual bool HasFileContents() const = 0; | 124 virtual bool HasFileContents() const = 0; |
| 124 virtual void SetDownloadFileInfo(const DownloadFileInfo& download) = 0; | 125 virtual void SetDownloadFileInfo(const DownloadFileInfo& download) = 0; |
| 125 #endif | 126 #endif |
| 126 | 127 |
| 127 #if defined(USE_AURA) | 128 #if defined(USE_AURA) |
| 128 virtual void SetHtml(const base::string16& html, const GURL& base_url) = 0; | 129 virtual void SetHtml(const base::string16& html, const GURL& base_url) = 0; |
| 129 virtual bool GetHtml(base::string16* html, GURL* base_url) const = 0; | 130 virtual bool GetHtml(base::string16* html, GURL* base_url) const = 0; |
| 130 virtual bool HasHtml() const = 0; | 131 virtual bool HasHtml() const = 0; |
| 131 #endif | 132 #endif |
| 132 | 133 |
| 133 #if defined(USE_AURA) | 134 #if defined(USE_AURA) || defined(OS_MACOSX) |
| 134 virtual void SetDragImage(const gfx::ImageSkia& image, | 135 virtual void SetDragImage(const gfx::ImageSkia& image, |
| 135 const gfx::Vector2d& cursor_offset) = 0; | 136 const gfx::Vector2d& cursor_offset) = 0; |
| 136 virtual const gfx::ImageSkia& GetDragImage() const = 0; | 137 virtual const gfx::ImageSkia& GetDragImage() const = 0; |
| 137 virtual const gfx::Vector2d& GetDragImageOffset() const = 0; | 138 virtual const gfx::Vector2d& GetDragImageOffset() const = 0; |
| 138 #endif | 139 #endif |
| 139 }; | 140 }; |
| 140 | 141 |
| 141 // Creates the platform specific Provider. | 142 // Creates the platform specific Provider. |
| 142 static Provider* CreateProvider(); | 143 static Provider* CreateProvider(); |
| 143 | 144 |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 230 private: | 231 private: |
| 231 // Provides the actual data. | 232 // Provides the actual data. |
| 232 std::unique_ptr<Provider> provider_; | 233 std::unique_ptr<Provider> provider_; |
| 233 | 234 |
| 234 DISALLOW_COPY_AND_ASSIGN(OSExchangeData); | 235 DISALLOW_COPY_AND_ASSIGN(OSExchangeData); |
| 235 }; | 236 }; |
| 236 | 237 |
| 237 } // namespace ui | 238 } // namespace ui |
| 238 | 239 |
| 239 #endif // UI_BASE_DRAGDROP_OS_EXCHANGE_DATA_H_ | 240 #endif // UI_BASE_DRAGDROP_OS_EXCHANGE_DATA_H_ |
| OLD | NEW |