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

Unified Diff: ui/base/dragdrop/os_exchange_data.h

Issue 7328011: Introduce ui.dll / libui.so for the component build. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 5 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 side-by-side diff with in-line comments
Download patch
Index: ui/base/dragdrop/os_exchange_data.h
===================================================================
--- ui/base/dragdrop/os_exchange_data.h (revision 92815)
+++ ui/base/dragdrop/os_exchange_data.h (working copy)
@@ -21,6 +21,7 @@
#include "base/file_path.h"
#include "base/memory/scoped_ptr.h"
#include "ui/base/dragdrop/download_file_interface.h"
+#include "ui/ui_api.h"
class GURL;
class Pickle;
@@ -41,7 +42,7 @@
// TabContentsViewGtk uses a different class to handle drag support that does
// not use OSExchangeData. As such, file contents and html support is only
// compiled on windows.
-class OSExchangeData {
+class UI_API OSExchangeData {
public:
// CustomFormats are used for non-standard data types. For example, bookmark
// nodes are written using a CustomFormat.
@@ -64,7 +65,7 @@
};
// Encapsulates the info about a file to be downloaded.
- struct DownloadFileInfo {
+ struct UI_API DownloadFileInfo {
DownloadFileInfo(const FilePath& filename,
DownloadFileProvider* downloader);
~DownloadFileInfo();
@@ -75,7 +76,7 @@
// Provider defines the platform specific part of OSExchangeData that
// interacts with the native system.
- class Provider {
+ class UI_API Provider {
public:
Provider() {}
virtual ~Provider() {}

Powered by Google App Engine
This is Rietveld 408576698