summaryrefslogtreecommitdiffstats
path: root/content
diff options
context:
space:
mode:
authorpenghuang@chromium.org <penghuang@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-11-17 20:05:55 +0000
committerpenghuang@chromium.org <penghuang@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-11-17 20:05:55 +0000
commit93eacdc4a798e25dacb2f9d70ca3522a7c8e6f9c (patch)
tree7b7494d731b779738c65f501cac53164a39db68c /content
parent86ace803dd9b3811db00578d7a2dfee698dc92b1 (diff)
downloadchromium_src-93eacdc4a798e25dacb2f9d70ca3522a7c8e6f9c.zip
chromium_src-93eacdc4a798e25dacb2f9d70ca3522a7c8e6f9c.tar.gz
chromium_src-93eacdc4a798e25dacb2f9d70ca3522a7c8e6f9c.tar.bz2
Fix link issue when component=shared_library
BUG=104622 TEST=GYP_DEFINES="component=shared_library" and build Review URL: http://codereview.chromium.org/8587036 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@110542 0039d316-1c4b-4281-b951-d872f2087c98
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;