Index: content/browser/renderer_host/render_widget_host_view.h |
diff --git a/content/browser/renderer_host/render_widget_host_view.h b/content/browser/renderer_host/render_widget_host_view.h |
index 3a85148269972308b921184627769a8c7ee2e3aa..08b500f1888e8722050ea974b6d305f1700fb2ae 100644 |
--- a/content/browser/renderer_host/render_widget_host_view.h |
+++ b/content/browser/renderer_host/render_widget_host_view.h |
@@ -14,6 +14,7 @@ |
#include <vector> |
#include "base/process_util.h" |
+#include "content/common/content_export.h" |
#include "third_party/skia/include/core/SkBitmap.h" |
#include "third_party/skia/include/core/SkColor.h" |
#include "third_party/WebKit/Source/WebKit/chromium/public/WebInputEvent.h" |
@@ -64,7 +65,7 @@ struct WebScreenInfo; |
// changes. |
class RenderWidgetHostView { |
public: |
- virtual ~RenderWidgetHostView(); |
+ CONTENT_EXPORT virtual ~RenderWidgetHostView(); |
// Platform-specific creator. Use this to construct new RenderWidgetHostViews |
// rather than using RenderWidgetHostViewWin & friends. |
@@ -315,7 +316,7 @@ class RenderWidgetHostView { |
// Subclasses should override this method to do what is appropriate to set |
// the custom background for their platform. |
- virtual void SetBackground(const SkBitmap& background); |
+ CONTENT_EXPORT virtual void SetBackground(const SkBitmap& background); |
const SkBitmap& background() const { return background_; } |
virtual void OnAccessibilityNotifications( |