| 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;
|
|
|