summaryrefslogtreecommitdiffstats
path: root/content
diff options
context:
space:
mode:
Diffstat (limited to 'content')
-rw-r--r--content/browser/gpu/gpu_process_host_ui_shim.h4
-rw-r--r--content/browser/renderer_host/accelerated_surface_container_linux.h3
2 files changed, 4 insertions, 3 deletions
diff --git a/content/browser/gpu/gpu_process_host_ui_shim.h b/content/browser/gpu/gpu_process_host_ui_shim.h
index c47d14c..a70f2a2 100644
--- a/content/browser/gpu/gpu_process_host_ui_shim.h
+++ b/content/browser/gpu/gpu_process_host_ui_shim.h
@@ -34,7 +34,7 @@ class Message;
}
// A task that will forward an IPC message to the UI shim.
-class RouteToGpuProcessHostUIShimTask : public Task {
+class CONTENT_EXPORT RouteToGpuProcessHostUIShimTask : public Task {
public:
RouteToGpuProcessHostUIShimTask(int host_id, const IPC::Message& msg);
virtual ~RouteToGpuProcessHostUIShimTask();
@@ -46,7 +46,7 @@ class RouteToGpuProcessHostUIShimTask : public Task {
IPC::Message msg_;
};
-class GpuProcessHostUIShim
+class CONTENT_EXPORT GpuProcessHostUIShim
: public IPC::Channel::Listener,
public IPC::Channel::Sender,
public base::NonThreadSafe {
diff --git a/content/browser/renderer_host/accelerated_surface_container_linux.h b/content/browser/renderer_host/accelerated_surface_container_linux.h
index 3dfbf22..18b8939 100644
--- a/content/browser/renderer_host/accelerated_surface_container_linux.h
+++ b/content/browser/renderer_host/accelerated_surface_container_linux.h
@@ -7,6 +7,7 @@
#pragma once
#include "base/basictypes.h"
+#include "content/common/content_export.h"
#include "ui/gfx/compositor/compositor.h"
#include "ui/gfx/surface/transport_dib.h"
@@ -14,7 +15,7 @@
// on behalf of the RWHVV. It assumes that GL context that will display
// the image data is current when an instance of this object is created
// or destroyed.
-class AcceleratedSurfaceContainerLinux {
+class CONTENT_EXPORT AcceleratedSurfaceContainerLinux {
public:
virtual ~AcceleratedSurfaceContainerLinux() { }
virtual void AddRef() = 0;