Chromium Code Reviews| 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> |
| (...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 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) || defined(OS_MACOSX) | 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 gfx::ImageSkia GetDragImage() const = 0; |
| 137 virtual const gfx::Vector2d& GetDragImageOffset() const = 0; | 137 virtual gfx::Vector2d GetDragImageOffset() const = 0; |
|
sadrul
2017/04/19 17:04:50
Was this a deliberate change? Can you document the
danakj
2017/04/19 17:20:22
Yes, because the win one doesn't have anything to
| |
| 138 #endif | 138 #endif |
| 139 }; | 139 }; |
| 140 | 140 |
| 141 OSExchangeData(); | 141 OSExchangeData(); |
| 142 // Creates an OSExchangeData with the specified provider. OSExchangeData | 142 // Creates an OSExchangeData with the specified provider. OSExchangeData |
| 143 // takes ownership of the supplied provider. | 143 // takes ownership of the supplied provider. |
| 144 explicit OSExchangeData(std::unique_ptr<Provider> provider); | 144 explicit OSExchangeData(std::unique_ptr<Provider> provider); |
| 145 | 145 |
| 146 ~OSExchangeData(); | 146 ~OSExchangeData(); |
| 147 | 147 |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 227 private: | 227 private: |
| 228 // Provides the actual data. | 228 // Provides the actual data. |
| 229 std::unique_ptr<Provider> provider_; | 229 std::unique_ptr<Provider> provider_; |
| 230 | 230 |
| 231 DISALLOW_COPY_AND_ASSIGN(OSExchangeData); | 231 DISALLOW_COPY_AND_ASSIGN(OSExchangeData); |
| 232 }; | 232 }; |
| 233 | 233 |
| 234 } // namespace ui | 234 } // namespace ui |
| 235 | 235 |
| 236 #endif // UI_BASE_DRAGDROP_OS_EXCHANGE_DATA_H_ | 236 #endif // UI_BASE_DRAGDROP_OS_EXCHANGE_DATA_H_ |
| OLD | NEW |