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

Unified Diff: content/browser/cancelable_request.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/cancelable_request.h
diff --git a/content/browser/cancelable_request.h b/content/browser/cancelable_request.h
index 18819ede172f7180906722cffbbd54d14c868120..a9e6f4fccef39e15db3564d3b7f24bfc4a2245bd 100644
--- a/content/browser/cancelable_request.h
+++ b/content/browser/cancelable_request.h
@@ -100,6 +100,7 @@
#include "base/synchronization/lock.h"
#include "base/task.h"
#include "build/build_config.h"
+#include "content/common/content_export.h"
class CancelableRequestBase;
class CancelableRequestConsumerBase;
@@ -113,7 +114,7 @@ class CancelableRequestConsumerBase;
// It is intended that providers inherit from this class to provide the
// necessary functionality.
-class CancelableRequestProvider {
+class CONTENT_EXPORT CancelableRequestProvider {
public:
// Identifies a specific request from this provider.
typedef int Handle;
@@ -514,7 +515,7 @@ extern template class CancelableRequestConsumerT<int, 0>;
// other thread for the callback, but will still be destroyed properly.
// Non-templatized base class that provides cancellation
-class CancelableRequestBase
+class CONTENT_EXPORT CancelableRequestBase
: public base::RefCountedThreadSafe<CancelableRequestBase> {
public:
friend class CancelableRequestProvider;

Powered by Google App Engine
This is Rietveld 408576698