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

Unified Diff: content/browser/renderer_host/backing_store_skia.h

Issue 7800015: prune down content_dll change to just the CONTENT_EXPORTS (Closed)
Patch Set: update copyright headers, merge Created 9 years, 3 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: content/browser/renderer_host/backing_store_skia.h
diff --git a/content/browser/renderer_host/backing_store_skia.h b/content/browser/renderer_host/backing_store_skia.h
index 57ff118a86c052f96e371814054d41d32171a611..c1d516981570060ac46c65a0138dfd52e26ac618 100644
--- a/content/browser/renderer_host/backing_store_skia.h
+++ b/content/browser/renderer_host/backing_store_skia.h
@@ -8,6 +8,7 @@
#include "base/memory/scoped_ptr.h"
#include "content/browser/renderer_host/backing_store.h"
+#include "content/common/content_export.h"
#include "third_party/skia/include/core/SkBitmap.h"
class SkCanvas;
@@ -22,10 +23,14 @@ class Canvas;
// RWHVV, and then this backing store will be removed.
class BackingStoreSkia : public BackingStore {
public:
- BackingStoreSkia(RenderWidgetHost* widget, const gfx::Size& size);
+ CONTENT_EXPORT BackingStoreSkia(
+ RenderWidgetHost* widget,
+ const gfx::Size& size);
+
virtual ~BackingStoreSkia();
- void SkiaShowRect(const gfx::Point& point, gfx::Canvas* canvas);
+ CONTENT_EXPORT void SkiaShowRect(const gfx::Point& point,
+ gfx::Canvas* canvas);
// BackingStore implementation.
virtual size_t MemorySize();

Powered by Google App Engine
This is Rietveld 408576698