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_PROVIDER_AURA_H_ | 5 #ifndef UI_BASE_DRAGDROP_OS_EXCHANGE_DATA_PROVIDER_AURA_H_ |
6 #define UI_BASE_DRAGDROP_OS_EXCHANGE_DATA_PROVIDER_AURA_H_ | 6 #define UI_BASE_DRAGDROP_OS_EXCHANGE_DATA_PROVIDER_AURA_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 | 9 |
10 #include "base/files/file_path.h" | 10 #include "base/files/file_path.h" |
11 #include "base/pickle.h" | 11 #include "base/pickle.h" |
12 #include "googleurl/src/gurl.h" | 12 #include "googleurl/src/gurl.h" |
13 #include "ui/base/dragdrop/os_exchange_data.h" | 13 #include "ui/base/dragdrop/os_exchange_data.h" |
14 #include "ui/gfx/image/image_skia.h" | 14 #include "ui/gfx/image/image_skia.h" |
15 #include "ui/gfx/vector2d.h" | 15 #include "ui/gfx/vector2d.h" |
16 | 16 |
17 namespace ui { | 17 namespace ui { |
18 | 18 |
19 class Clipboard; | 19 class Clipboard; |
20 | 20 |
21 // OSExchangeData::Provider implementation for aura on linux. | 21 // OSExchangeData::Provider implementation for aura on linux. |
22 class UI_EXPORT OSExchangeDataProviderAura | 22 class UI_EXPORT OSExchangeDataProviderAura |
23 : public OSExchangeData::Provider { | 23 : public OSExchangeData::Provider { |
24 public: | 24 public: |
25 OSExchangeDataProviderAura(); | 25 OSExchangeDataProviderAura(); |
26 virtual ~OSExchangeDataProviderAura(); | 26 virtual ~OSExchangeDataProviderAura(); |
27 | 27 |
28 // Overridden from OSExchangeData::Provider: | 28 // Overridden from OSExchangeData::Provider: |
29 virtual void SetString(const string16& data) OVERRIDE; | 29 virtual void SetString(const base::string16& data) OVERRIDE; |
30 virtual void SetURL(const GURL& url, const string16& title) OVERRIDE; | 30 virtual void SetURL(const GURL& url, const base::string16& title) OVERRIDE; |
31 virtual void SetFilename(const base::FilePath& path) OVERRIDE; | 31 virtual void SetFilename(const base::FilePath& path) OVERRIDE; |
32 virtual void SetFilenames( | 32 virtual void SetFilenames( |
33 const std::vector<OSExchangeData::FileInfo>& filenames) OVERRIDE; | 33 const std::vector<OSExchangeData::FileInfo>& filenames) OVERRIDE; |
34 virtual void SetPickledData(const OSExchangeData::CustomFormat& format, | 34 virtual void SetPickledData(const OSExchangeData::CustomFormat& format, |
35 const Pickle& data) OVERRIDE; | 35 const Pickle& data) OVERRIDE; |
36 virtual bool GetString(string16* data) const OVERRIDE; | 36 virtual bool GetString(base::string16* data) const OVERRIDE; |
37 virtual bool GetURLAndTitle(GURL* url, string16* title) const OVERRIDE; | 37 virtual bool GetURLAndTitle(GURL* url, base::string16* title) const OVERRIDE; |
38 virtual bool GetFilename(base::FilePath* path) const OVERRIDE; | 38 virtual bool GetFilename(base::FilePath* path) const OVERRIDE; |
39 virtual bool GetFilenames( | 39 virtual bool GetFilenames( |
40 std::vector<OSExchangeData::FileInfo>* filenames) const OVERRIDE; | 40 std::vector<OSExchangeData::FileInfo>* filenames) const OVERRIDE; |
41 virtual bool GetPickledData(const OSExchangeData::CustomFormat& format, | 41 virtual bool GetPickledData(const OSExchangeData::CustomFormat& format, |
42 Pickle* data) const OVERRIDE; | 42 Pickle* data) const OVERRIDE; |
43 virtual bool HasString() const OVERRIDE; | 43 virtual bool HasString() const OVERRIDE; |
44 virtual bool HasURL() const OVERRIDE; | 44 virtual bool HasURL() const OVERRIDE; |
45 virtual bool HasFile() const OVERRIDE; | 45 virtual bool HasFile() const OVERRIDE; |
46 virtual bool HasCustomFormat(const OSExchangeData::CustomFormat& format) const | 46 virtual bool HasCustomFormat(const OSExchangeData::CustomFormat& format) const |
47 OVERRIDE; | 47 OVERRIDE; |
48 | 48 |
49 virtual void SetHtml(const string16& html, const GURL& base_url) OVERRIDE; | 49 virtual void SetHtml(const base::string16& html, |
50 virtual bool GetHtml(string16* html, GURL* base_url) const OVERRIDE; | 50 const GURL& base_url) OVERRIDE; |
| 51 virtual bool GetHtml(base::string16* html, GURL* base_url) const OVERRIDE; |
51 virtual bool HasHtml() const OVERRIDE; | 52 virtual bool HasHtml() const OVERRIDE; |
52 virtual void SetDragImage(const gfx::ImageSkia& image, | 53 virtual void SetDragImage(const gfx::ImageSkia& image, |
53 const gfx::Vector2d& cursor_offset) OVERRIDE; | 54 const gfx::Vector2d& cursor_offset) OVERRIDE; |
54 virtual const gfx::ImageSkia& GetDragImage() const OVERRIDE; | 55 virtual const gfx::ImageSkia& GetDragImage() const OVERRIDE; |
55 virtual const gfx::Vector2d& GetDragImageOffset() const OVERRIDE; | 56 virtual const gfx::Vector2d& GetDragImageOffset() const OVERRIDE; |
56 | 57 |
57 private: | 58 private: |
58 typedef std::map<OSExchangeData::CustomFormat, Pickle> PickleData; | 59 typedef std::map<OSExchangeData::CustomFormat, Pickle> PickleData; |
59 | 60 |
60 // Returns true if |formats_| contains a string format and the string can be | 61 // Returns true if |formats_| contains a string format and the string can be |
61 // parsed as a URL. | 62 // parsed as a URL. |
62 bool GetPlainTextURL(GURL* url) const; | 63 bool GetPlainTextURL(GURL* url) const; |
63 | 64 |
64 // Actual formats that have been set. See comment above |known_formats_| | 65 // Actual formats that have been set. See comment above |known_formats_| |
65 // for details. | 66 // for details. |
66 int formats_; | 67 int formats_; |
67 | 68 |
68 // String contents. | 69 // String contents. |
69 string16 string_; | 70 base::string16 string_; |
70 | 71 |
71 // URL contents. | 72 // URL contents. |
72 GURL url_; | 73 GURL url_; |
73 string16 title_; | 74 base::string16 title_; |
74 | 75 |
75 // File name. | 76 // File name. |
76 std::vector<OSExchangeData::FileInfo> filenames_; | 77 std::vector<OSExchangeData::FileInfo> filenames_; |
77 | 78 |
78 // PICKLED_DATA contents. | 79 // PICKLED_DATA contents. |
79 PickleData pickle_data_; | 80 PickleData pickle_data_; |
80 | 81 |
81 // Drag image and offset data. | 82 // Drag image and offset data. |
82 gfx::ImageSkia drag_image_; | 83 gfx::ImageSkia drag_image_; |
83 gfx::Vector2d drag_image_offset_; | 84 gfx::Vector2d drag_image_offset_; |
84 | 85 |
85 // For HTML format | 86 // For HTML format |
86 string16 html_; | 87 base::string16 html_; |
87 GURL base_url_; | 88 GURL base_url_; |
88 | 89 |
89 DISALLOW_COPY_AND_ASSIGN(OSExchangeDataProviderAura); | 90 DISALLOW_COPY_AND_ASSIGN(OSExchangeDataProviderAura); |
90 }; | 91 }; |
91 | 92 |
92 } // namespace ui | 93 } // namespace ui |
93 | 94 |
94 #endif // UI_BASE_DRAGDROP_OS_EXCHANGE_DATA_PROVIDER_AURA_H_ | 95 #endif // UI_BASE_DRAGDROP_OS_EXCHANGE_DATA_PROVIDER_AURA_H_ |
OLD | NEW |