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

Unified Diff: ui/ozone/platform/dri/scoped_drm_types.h

Issue 886323004: ozone: dri: Fix undefined references in DRI platform GN build (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: also fix gyp build Created 5 years, 10 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
« no previous file with comments | « ui/ozone/platform/dri/overlay_plane.h ('k') | ui/ozone/platform/dri/screen_manager.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/ozone/platform/dri/scoped_drm_types.h
diff --git a/ui/ozone/platform/dri/scoped_drm_types.h b/ui/ozone/platform/dri/scoped_drm_types.h
index e651232b321339ac69b9a7c27ea853d816aea230..bd8b4bc86c6729ebacc816b80cbd65c9bad57662 100644
--- a/ui/ozone/platform/dri/scoped_drm_types.h
+++ b/ui/ozone/platform/dri/scoped_drm_types.h
@@ -6,6 +6,7 @@
#define UI_OZONE_PLATFORM_DRI_SCOPED_DRM_TYPES_H_
#include "base/memory/scoped_ptr.h"
+#include "ui/ozone/ozone_export.h"
typedef struct _drmModeConnector drmModeConnector;
typedef struct _drmModeCrtc drmModeCrtc;
@@ -20,34 +21,34 @@ typedef struct _drmModeRes drmModeRes;
namespace ui {
-struct DrmResourcesDeleter {
+struct OZONE_EXPORT DrmResourcesDeleter {
void operator()(drmModeRes* resources) const;
};
-struct DrmConnectorDeleter {
+struct OZONE_EXPORT DrmConnectorDeleter {
void operator()(drmModeConnector* connector) const;
};
-struct DrmCrtcDeleter {
+struct OZONE_EXPORT DrmCrtcDeleter {
void operator()(drmModeCrtc* crtc) const;
};
-struct DrmEncoderDeleter {
+struct OZONE_EXPORT DrmEncoderDeleter {
void operator()(drmModeEncoder* encoder) const;
};
-struct DrmObjectPropertiesDeleter {
+struct OZONE_EXPORT DrmObjectPropertiesDeleter {
void operator()(drmModeObjectProperties* properties) const;
};
-struct DrmPlaneDeleter {
+struct OZONE_EXPORT DrmPlaneDeleter {
void operator()(drmModePlane* plane) const;
};
-struct DrmPlaneResDeleter {
+struct OZONE_EXPORT DrmPlaneResDeleter {
void operator()(drmModePlaneRes* plane_res) const;
};
-struct DrmPropertyDeleter {
+struct OZONE_EXPORT DrmPropertyDeleter {
void operator()(drmModePropertyRes* property) const;
};
-struct DrmPropertyBlobDeleter {
+struct OZONE_EXPORT DrmPropertyBlobDeleter {
void operator()(drmModePropertyBlobRes* property) const;
};
-struct DrmFramebufferDeleter {
+struct OZONE_EXPORT DrmFramebufferDeleter {
void operator()(drmModeFB* framebuffer) const;
};
« no previous file with comments | « ui/ozone/platform/dri/overlay_plane.h ('k') | ui/ozone/platform/dri/screen_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698