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

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

Issue 7800015: prune down content_dll change to just the CONTENT_EXPORTS (Closed)
Patch Set: fix exports for switches, content_main Created 9 years, 4 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_manager.h
diff --git a/content/browser/renderer_host/backing_store_manager.h b/content/browser/renderer_host/backing_store_manager.h
index 26dcd1cda1a768b1a4ed5b0b2e3c2a932ea79f75..0ea14b849795b06839648b28029eaeb855dbf545 100644
--- a/content/browser/renderer_host/backing_store_manager.h
+++ b/content/browser/renderer_host/backing_store_manager.h
@@ -10,6 +10,7 @@
#include "base/basictypes.h"
#include "base/process.h"
+#include "content/common/content_export.h"
#include "ui/gfx/rect.h"
#include "ui/gfx/size.h"
#include "ui/gfx/surface/transport_dib.h"
@@ -59,7 +60,7 @@ class BackingStoreManager {
static void RemoveBackingStore(RenderWidgetHost* host);
// Removes all backing stores.
- static void RemoveAllBackingStores();
+ CONTENT_EXPORT static void RemoveAllBackingStores();
// Expires the given backing store. This emulates something getting evicted
// from the cache for the purpose of testing. Returns true if the host was
@@ -67,7 +68,7 @@ class BackingStoreManager {
static bool ExpireBackingStoreForTest(RenderWidgetHost* host);
// Current size in bytes of the backing store cache.
- static size_t MemorySize();
+ CONTENT_EXPORT static size_t MemorySize();
private:
// Not intended for instantiation.

Powered by Google App Engine
This is Rietveld 408576698