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

Unified Diff: content/browser/renderer_host/resource_queue.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/resource_queue.h
diff --git a/content/browser/renderer_host/resource_queue.h b/content/browser/renderer_host/resource_queue.h
index 835b367d2ed7a1aa9518f91cb8f1d3b161dd60e7..f7b1bb110520052b87fa85b25ebc6bc9dd2afb9f 100644
--- a/content/browser/renderer_host/resource_queue.h
+++ b/content/browser/renderer_host/resource_queue.h
@@ -10,6 +10,7 @@
#include <set>
#include "base/basictypes.h"
+#include "content/common/content_export.h"
namespace net {
class URLRequest;
@@ -39,7 +40,7 @@ class ResourceQueueDelegate {
virtual void WillShutdownResourceQueue() = 0;
protected:
- virtual ~ResourceQueueDelegate();
+ CONTENT_EXPORT virtual ~ResourceQueueDelegate();
};
// Makes it easy to delay starting URL requests until specified conditions are
@@ -76,8 +77,8 @@ class ResourceQueue {
// A delegate should call StartDelayedRequest when it wants to allow the
// request to start. If it was the last delegate that demanded the request
// to be delayed, the request will be started.
- void StartDelayedRequest(ResourceQueueDelegate* delegate,
- const GlobalRequestID& request_id);
+ CONTENT_EXPORT void StartDelayedRequest(ResourceQueueDelegate* delegate,
+ const GlobalRequestID& request_id);
private:
typedef std::map<GlobalRequestID, net::URLRequest*> RequestMap;

Powered by Google App Engine
This is Rietveld 408576698