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

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

Issue 8113027: Export some unix-specific content symbols (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: more exports Created 9 years, 2 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 3f867eef0241b03a8e8d39e67d73884a4783e210..d8cecec448c51c94e2ae822ad8b3a140ceb981ab 100644
--- a/content/browser/renderer_host/resource_queue.h
+++ b/content/browser/renderer_host/resource_queue.h
@@ -22,7 +22,7 @@ struct GlobalRequestID;
// Makes decisions about delaying or not each net::URLRequest in the queue.
// All methods are called on the IO thread.
-class ResourceQueueDelegate {
+class CONTENT_EXPORT ResourceQueueDelegate {
public:
// Gives the delegate a pointer to the queue object.
virtual void Initialize(ResourceQueue* resource_queue) = 0;
@@ -40,7 +40,7 @@ class ResourceQueueDelegate {
virtual void WillShutdownResourceQueue() = 0;
protected:
- CONTENT_EXPORT virtual ~ResourceQueueDelegate();
+ virtual ~ResourceQueueDelegate();
};
// Makes it easy to delay starting URL requests until specified conditions are

Powered by Google App Engine
This is Rietveld 408576698